generated from khaledosman/lerna-ts-yarnworkspaces-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
47
48
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"watch": "yarn bootstrap && lerna run watch --parallel",
"build": "yarn bootstrap && lerna run build --parallel",
"bootstrap": "lerna bootstrap",
"clean": "rm -rf lib/ packages/**/lib/** && lerna clean",
"publish": "yarn build && lerna publish",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint --parallel -- --fix",
"version": "yarn build && lerna version",
"commit": "npx git-cz",
"release": "yarn publish"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^16.4.0",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"husky": "^4.3.0",
"lerna": "^4.0.0",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {}
}