forked from umijs/umi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.6 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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "./scripts/build.js",
"changelog": "lerna-changelog",
"test": "node scripts/test.js",
"test:coverage": "./packages/umi-test/bin/umi-test.js --coverage",
"debug": "./packages/umi-test/bin/umi-test.js",
"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": "npm test && ./scripts/publish.js",
"ui:dev": "APP_ROOT=packages/umi-build-dev/src/plugins/commands/ui ./packages/umi/bin/umi.js dev",
"ui:build": "APP_ROOT=packages/umi-build-dev/src/plugins/commands/ui ./packages/umi/bin/umi.js build"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma all --single-quote --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "10.0.1",
"chokidar": "2.0.4",
"coveralls": "3.0.2",
"dva": "2.4.1",
"eslint": "5.10.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"form-data": "^2.3.3",
"got": "9.3.2",
"husky": "1.2.0",
"lerna": "3.6.0",
"lerna-changelog": "0.8.2",
"lint-staged": "8.1.0",
"prettier": "1.15.3",
"puppeteer": "1.11.0",
"react-router-dom": "4.3.1",
"react-test-renderer": "16.6.3",
"shelljs": "0.8.3",
"test-build-result": "^1.0.1",
"umi-tools": "^0.3.1"
}
}