-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"private": true,
"dependencies": {
"antd": "^2.11.2",
"classnames": "^2.2.5",
"draftjs-to-markdown": "^0.4.0",
"dva": "^1.2.0",
"dva-loading": "^0.2.0",
"lodash": "^4.17.4",
"nprogress": "^0.2.0",
"qs": "^6.5.0",
"react": "^15.6.1",
"react-countup": "^2.1.1",
"react-dom": "^15.6.1",
"react-draft-wysiwyg": "^1.10.0",
"axios": "^0.16.2",
"jsonp": "^0.2.1",
"react-helmet": "^5.1.3",
"recharts": "^0.22.4",
"react-perfect-scrollbar": "^0.2.2",
"query-string": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-plugin-dva-hmr": "^0.3.2",
"babel-eslint": "^7.2.3",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-import": "^1.1.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-runtime": "^6.9.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"draftjs-to-html": "^0.7.0",
"dva-model-extend": "^0.1.1",
"eslint": "^4.1.1",
"eslint-config-airbnb": "^15.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"less-vars-to-js": "^1.1.2",
"mockjs": "^1.0.1-beta3",
"path-to-regexp": "^1.7.0",
"rc-tween-one": "^1.0.0",
"redbox-react": "^1.2.10",
"roadhog": "0.6.0",
"mocha": "^3.4.2",
"nyc": "^11.0.1",
"jsdom": "^11.1.0",
"chai": "^4.1.1",
"cross-env": "^5.0.5",
"mochawesome": "^2.3.0",
"expect": "^1.20.2",
"envify": "^4.1.0",
"browserify": "^14.4.0",
"browserify-shim": "^3.8.14",
"coveralls": "^2.13.1",
"cli": "^1.0.1"
},
"pre-commit": [
"lint"
],
"scripts": {
"dev": "set BROWSER=none&&set HOST=0.0.0.0&&roadhog server",
"lint": "eslint --fix --ext .js src",
"build": "roadhog build",
"test": "cross-env NODE_ENV=test nyc mocha --no-timeouts --reporter mochawesome",
"scaffold": "./node_modules/.bin/babel-node src/tools/scaffold.js"
},
"nyc": {
"include": [
"src/utils/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}