-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "lerna",
"version": "0.1.1",
"main": "index.js",
"repository": "https://github.com/goblin-laboratory/cra-lerna-template.git",
"author": "xiaosong <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint --ext .js packages",
"test": "jest",
"test:coverage": "jest --coverage",
"cov": "jest --coverage --coverageReporters=text-lcov | coveralls",
"bootstrap": "lerna bootstrap",
"start": "lerna run start",
"build": "lerna run build",
"deploy": "lerna run deploy",
"changelog": "lerna version --conventional-commits"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"prettier": "^2.0.5",
"react-scripts": "^3.4.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"workspaces": [
"packages/*"
]
}