-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "app",
"private": true,
"workspaces": [
"env",
"packages/*"
],
"scripts": {
"ci": "cross-env NODE_ENV=production CI=true yarn build && yarn release --yes",
"lerna": "lerna",
"bootstrap": "lerna bootstrap && lerna link",
"release": "lerna publish --no-push --skip-npm && rimraf env/CHANGELOG.md",
"clear": "rimraf **/*.log",
"init": "yarn clear && rimraf */**/CHANGELOG.md"
},
"dependencies": {
"cross-env": "^5.2.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^7.2.0",
"@commitlint/config-angular": "^7.1.2",
"@commitlint/config-lerna-scopes": "^7.1.2",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.1.1",
"lerna": "^3.4.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-lerna-scopes",
"@commitlint/config-angular"
]
},
"repository": "cloudever/create-my-app",
"author": "@cloudever"
}