-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
46
{
"name": "npcs",
"private": true,
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"scripts": {
"prepare": "husky",
"dev": "npcs dev",
"storybook": "npcs storybook",
"commit": "git-cz",
"prepublish": "turbo compile"
},
"dependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@manypkg/cli": "^0.21.4",
"@npcs/cli": "workspace:^",
"@npcs/get-changed-packages": "workspace:^",
"commitizen": "^4.3.0",
"cz-git": "^1.9.4",
"husky": "^9.1.1",
"lerna": "^8.1.7",
"lerna-changelog": "^2.2.0",
"lint-staged": "^15.2.7",
"turbo": "^2.0.9"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"resolutions": {
"@typescript-eslint/typescript-estree": "7.16.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"@types/node": "^20.14.10"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}