-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"scripts": {
"lint": "lerna run lint --stream",
"test": "lerna run test --stream",
"test:ci": "lerna run test:ci --stream",
"clean": "rimraf ./packages/**/dist/ && rimraf ./packages/**/tsconfig.tsbuildinfo",
"tsc:packages": "tsc -b packages/",
"prepare:packages": "yarn clean && yarn tsc:packages",
"lerna:bootstrap": "lerna bootstrap",
"lerna:publish": "yarn prepare:packages && lerna publish --exact --conventional-commits --changelog-preset conventionalcommits --create-release github"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"husky": "^4.2.5",
"lerna": "^4.0.0",
"rimraf": "3.0.2",
"typescript": "4.3.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD --exclude-dependents"
}
}
}