-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "csk-packages",
"version": "6.1.57",
"private": true,
"scripts": {
"build": "turbo build",
"build:packages": "turbo run build --filter=./packages/*",
"build:apps": "turbo run build --filter=./apps/*",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "turbo format",
"workspace:check": "manypkg check",
"workspace:fix": "manypkg fix",
"prepare": "husky",
"reinstall": "rimraf node_modules apps/*/node_modules packages/*/node_modules apps/*/{.turbo,.next,dist,storybook-static} packages/*/{.turbo,.next,dist} .turbo .next dist && npm install"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@manypkg/cli": "^0.23.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"rimraf": "^6.0.1",
"turbo": "^2.3.4",
"typescript": "^5.7.3"
},
"engines": {
"node": "^18.18.0 || ^19.8.0 || >= 20.0.0"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}