-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "umi-tools build",
"changelog": "lerna-changelog",
"test": "node scripts/test.js",
"test:coverage": "umi-test --coverage",
"debug": "umi-test",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint --ext .js packages",
"precommit": "lint-staged",
"doc:dev": "./website/node_modules/.bin/vuepress dev ./docs",
"doc:deploy": "rm -rf ./website/yarn.lock && cd ./website && npm run deploy && cd -",
"publish": "./scripts/publish.js"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma all --single-quote --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"chokidar": "^2.0.2",
"coveralls": "^3.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.11.1",
"got": "^9.1.0",
"husky": "^0.14.3",
"lerna": "^3.2.1",
"lerna-changelog": "^0.8.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"puppeteer": "^1.7.0",
"shelljs": "^0.8.1",
"umi-test": "^1.0.0-beta.7",
"umi-tools": "^0.1.0"
}
}