-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 623 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 623 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
{
"name": "9ui-monorepo",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:www": "turbo dev --filter=www",
"lint": "turbo lint",
"format": "turbo format",
"clean": "turbo clean && rm -rf node_modules",
"type-check": "turbo type-check"
},
"packageManager": "pnpm@10.26.1",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"git-cz": "^4.9.0",
"prettier": "^3.2.5",
"turbo": "2.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}