forked from skbkontur/retail-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 867 Bytes
/
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
{
"workspaces": [
"packages/*",
"packages/@skbkontur/*"
],
"private": true,
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@skbkontur/eslint-config": "*",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"env-cmd": "^10.1.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"prettier": "2.3.2"
},
"scripts": {
"commit": "git-cz",
"release": "env-cmd lerna version",
"prepare": "husky install",
"preinstall": "node scripts/update-package-registry",
"postinstall": "node scripts/update-package-registry back"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
],
"roots": [
"<rootDir>/packages/*"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}