-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.76 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
62
{
"private": true,
"scripts": {
"test": "roadhog test --coverage",
"test-cat": "roadhog test --coverage -R nyan",
"test-es5": "istanbul cover ./node_modules/mocha/bin/_mocha",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- --compilers .:./node_modules/roadhog/lib/test/compiler.js --require ./node_modules/roadhog/lib/test/setup.js",
"start": "roadhog server --no-open",
"build": "roadhog build",
"lint": "eslint --ext .js src",
"precommit": "npm run lint"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register",
"roadhog/test/setup.js"
],
"sourceMap": false,
"instrument": false
},
"engines": {
"install-node": "6.9.2"
},
"dependencies": {
"antd": "^2.7.1",
"babel-runtime": "^6.9.2",
"console-polyfill": "^0.2.3",
"dva": "^1.2.1",
"es5-shim": "^4.5.9",
"es6-shim": "^0.35.3",
"hope-core": "^0.2.1",
"react": "^15.4.0",
"react-dom": "^15.4.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-dva-hmr": "^0.3.2",
"babel-plugin-import": "^1.1.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-runtime": "^6.9.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-promise": "^1.1.3",
"eslint-config-react-app": "^0.6.2",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"expect": "^1.20.2",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.12.0",
"istanbul": "^1.1.0-alpha.1",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.0",
"mockjs": "^1.0.1-beta3",
"redbox-react": "^1.3.2",
"roadhog": "^0.5.3"
}
}