-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "clair-design",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Clair Design",
"scripts": {
"commit": "git-cz",
"bootstrap": "lerna bootstrap",
"start": "node -r esm bin/start",
"serve": "node -r esm bin/serve",
"deploy": "node -r esm bin/deploy",
"lint": "lerna run lint --stream --parallel",
"fix": "lerna run fix --stream --parallel",
"test": "node -r esm bin/test",
"test:clean": "lerna run test:clean --stream",
"prepublish@npm": "yarn lint && yarn test",
"publish@npm": "lerna publish --conventional-commits"
},
"author": {
"name": "Yuchen Liu",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/config-lerna-scopes": "^8.1.0",
"commitizen": "^4.0.3",
"conventional-changelog-core": "^4.0.2",
"cz-lerna-changelog": "^2.0.2",
"danger": "^10.1.1",
"esm": "^3.2.25",
"husky": "^3.0.2",
"inquirer": "^7.0.0",
"lerna": "^3.16.4",
"lodash": "^4.17.15"
},
"resolutions": {
"react": "16.13.0",
"react-dom": "16.13.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lerna run --concurrency 1 --stream precommit",
"pre-push": "lerna run test --stream --ignore @clair/react",
"post-merge": "yarn && lerna run build --scope @clair/helpers --scope @clair/icons --scope babel-plugin-rewrite-module-path"
}
}
}