-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "root",
"private": true,
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"lerna": "^4.0.0"
},
"engines": {
"node": ">=15",
"npm": ">=7"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"build:production": "lerna run build:production --stream",
"docs": "lerna run docs --stream",
"format": "lerna run format --stream --parallel",
"lerna": "lerna",
"lint": "lerna run lint --stream --parallel",
"lint:fix": "lerna run lint:fix --stream --parallel",
"prepare": "husky install",
"release": "HUSKY=0 lerna version --yes",
"setup": "npm i && npm run bootstrap",
"test": "lerna run test --stream"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}