-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1020 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
{
"name": "root",
"private": true,
"scripts": {
"clean": "lerna clean",
"dry-run": "lerna exec --stream -- npm pack --dry-run",
"format": "node packages/u/bin/u prettier --write .",
"format-check": "node packages/u/bin/u prettier --check .",
"postinstall": "lerna bootstrap --no-ci",
"prerelease": "node release-checks",
"sort": "lerna exec -- npx sort-package-json",
"test-ci": "syncpack list-mismatches -pd && npm run format-check && lerna run test-ci",
"test": "syncpack list-mismatches -pd && npm run format && lerna run test",
"update": "lerna exec -- npx npm-check-updates -u"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"execa": "^5.1.1",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"syncpack": "^5.8.15"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}