-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
49
50
51
52
53
54
55
56
57
58
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"dev": "yarn build && lerna run --parallel --stream dev",
"clean": "lerna run clean",
"lint": "lerna run lint",
"release": "yarn build && lerna publish --conventional-commits",
"test": "lerna run test",
"type-check": "lerna run type-check",
"uninstall": "lerna clean && rimraf ./node_modules"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn type-check && yarn lint && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn type-check && yarn lint && yarn test"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
0
],
"header-max-length": [
2,
"always",
100
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": "git+https://github.com/vovaguguiev/react-sunbeam.git",
"author": "Vova Guguiev <vladimir.guguiev@gmail.com>",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2"
}
}