-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.38 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.38 KB
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
{
"private": true,
"entry": {
"index": "./src/index.js"
},
"dependencies": {
"antd": "^2.9.1",
"classnames": "^2.2.5",
"d3-shape": "^1.0.6",
"dva": "^1.1.0",
"dva-loading": "^0.2.0",
"echarts": "^3.5.4",
"immutable": "^3.8.1",
"js-cookie": "^2.1.3",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"nprogress": "^0.2.0",
"prop-types": "^15.5.9",
"qs": "^6.2.0",
"rc-queue-anim": "^0.13.0",
"rc-tween-one": "^1.0.0",
"react": "^15.4.1",
"react-countup": "^1.3.0",
"react-dom": "^15.4.1",
"react-draggable": "^2.2.6",
"react-lz-editor": "^0.10.15",
"react-media-player": "^0.6.1",
"react-motion-ui-pack": "^0.10.2",
"recharts": "^0.19.0",
"reselect": "^2.5.4",
"socket.io": "^2.0.1"
},
"devDependencies": {
"atool-build": "^0.7.6",
"axios": "^0.15.3",
"babel-cli": "^6.14.0",
"babel-eslint": "^6.0.4",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-dva-hmr": "^0.1.0",
"babel-plugin-import": "^1.0.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.9.2",
"dora": "^0.4.3",
"dora-plugin-browser-history": "^0.2.0",
"dora-plugin-proxy": "^0.8.5",
"dora-plugin-webpack": "^0.8.1",
"dora-plugin-webpack-hmr": "^0.2.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"express": "^4.15.3",
"glob": "^7.0.5",
"mockjs": "^1.0.1-beta3",
"path-to-regexp": "^1.7.0",
"redbox-react": "^1.2.10",
"robe-ajax": "^1.0.0",
"watchjs": "^0.0.0"
},
"scripts": {
"dev": "dora --plugins \"webpack?config=conf/webpack.config.js&publicPath=/,webpack-hmr,browser-history?index=/src/index.html\"",
"build-dev": "atool-build --config conf/webpack.config.js --publicPath /",
"build-staging": "atool-build --config conf/webpack.config.staging.js --publicPath /",
"build-release": "atool-build --config conf/webpack.config.release.js --publicPath /",
"start": "dora --plugins \"proxy,webpack,webpack-hmr\"",
"lint": "eslint --fix --ext .js,.jsx src/components/layout"
},
"theme": "./src/theme.js",
"standard": {
"parser": "babel-eslint",
"globals": [
"location",
"localStorage"
]
}
}