-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 933 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 933 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
{
"name": "@dcss-stats/root",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"prepare": "husky",
"bootstrap": "yarn install && turbo bootstrap",
"dev": "turbo dev",
"build": "turbo build",
"format": "turbo format",
"lint": "turbo lint",
"test": "turbo test",
"type-check": "turbo type-check",
"start:api": "yarn workspace @dcss-stats/api start",
"migrate": "yarn workspace @dcss-stats/api migrate",
"typegen": "turbo typegen",
"dev:web": "turbo dev --filter=@dcss-stats/web",
"dev:api": "turbo dev --filter=@dcss-stats/api",
"dev:extractor": "turbo dev --filter=@dcss-stats/extractor"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"turbo": "^2.8.21"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
},
"packageManager": "yarn@4.13.0",
"engines": {
"node": ">=22"
}
}