-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "velo-repo",
"description": "Time tracking tool.",
"version": "0.1.0",
"main": "dist/index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"test": "npm run test --workspaces --if-present"
},
"keywords": [
"velo",
"starktech",
"time",
"tracking"
],
"author": "starktechlabs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/starktechlabs/velo"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"dlv": "^1.1.3",
"knex": "^3.1.0",
"uuid": "^11.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.56.1"
}
}