-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"private": true,
"scripts": {
"build": "node scripts/build.js",
"build:es": "ES=1 node scripts/build.js",
"build:umd:clean": "rm -rf packages/dva/dist",
"build:umd": "node scripts/umd.js",
"build:umd:production": "NODE_ENV=production node scripts/umd.js",
"doc:dev": "./website/node_modules/.bin/vuepress dev ./docs",
"doc:deploy": "cd ./website && npm run deploy && cd -",
"changelog": "lerna-changelog",
"test": "umi-test --coverage",
"debug": "umi-test",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint --ext .js packages",
"precommit": "lint-staged",
"publish": "./scripts/publish.js",
"bootstrap": "lerna bootstrap"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"chalk": "^2.3.2",
"coveralls": "^3.0.0",
"eslint": "^5.6.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",
"expect": "^1.20.2",
"husky": "^0.14.3",
"lerna": "^3.4.0",
"lerna-changelog": "^0.8.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"rimraf": "^2.6.2",
"rollup": "^0.66.1",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^6.0.0",
"shelljs": "^0.8.1",
"through2": "^2.0.3",
"uglify-js": "^3.4.9",
"umi-test": "^1.0.0",
"vinyl-fs": "^3.0.2"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
}
}