-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 KB
/
package.json
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
{
"name": "@vercube/root",
"private": true,
"type": "module",
"scripts": {
"build": "nx run-many --target=build --all",
"dev": "nx watch --all -- nx run \\$NX_PROJECT_NAME:build",
"test": "nx run-many -t test",
"release": "nx release",
"lint": "prettier -c --parser typescript \"packages/*/**/*.[jt]s?(x)\" --write",
"postinstall": "simple-git-hooks"
},
"engines": {
"node": ">=18.20.0"
},
"lint-staged": {
"*.{js,mjs,json,cjs}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.26.0",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@nx/js": "20.1.3",
"@nx/rollup": "20.1.3",
"@types/node": "22.9.3",
"lint-staged": "^15.2.10",
"nx": "20.1.3",
"prettier": "3.3.3",
"rollup": "4.27.4",
"simple-git-hooks": "2.11.1",
"typescript": "5.7.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm dlx commitlint --edit $1"
}
}