forked from goblin-laboratory/reactjs-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint --ext .js packages",
"test": "react-app-rewired test",
"test:coverage": "react-app-rewired test --coverage --watchAll=false",
"coveralls": "react-app-rewired test --coverage --watchAll=false --coverageReporters=text-lcov | coveralls",
"build": "lerna run build",
"predeploy": "lerna run build",
"deploy": "lerna run deploy",
"ver": "lerna version --conventional-commits",
"pub": "lerna publish --conventional-commits",
"release-from-git": "lerna publish from-git",
"nrm": "nrm use taobao"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@testing-library/react": "^9.1.1",
"@testing-library/react-hooks": "^1.1.0",
"coveralls": "^3.0.4",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.0",
"lerna": "^3.16.4",
"prettier": "^1.18.2",
"react-app-rewired": "^2.1.3",
"react-scripts": "^3.1.1",
"react-test-renderer": "^16.9.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint",
"pre-push": "yarn test --watchAll=false"
}
},
"eslintIgnore": [
"build",
"dist",
"node_modules"
],
"config-overrides-path": "scripts/config-overrides.js"
}