-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 957 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 957 Bytes
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
{
"name": "crowd-depth-dev",
"private": true,
"type": "module",
"scripts": {
"test": "vitest",
"build": "tsc -b",
"format": "eslint --fix && prettier --write .",
"check": "eslint && prettier --check . && npm run lint --workspaces --if-present",
"prepare": "husky",
"start": "npm run start -w crowd-depth-api"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/debug": "^4.1.12",
"@types/node": "^25.0.8",
"ajv": "^8.17.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"nock": "^14.0.10",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vitest": "^4.0.8"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown",
"eslint --fix --no-warn-ignored"
]
},
"workspaces": {
"packages": [
"packages/*"
]
}
}