-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 2.06 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
{
"name": "myecharts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "browserify ./app.js -o build.js -t [ babelify --presets [ es2015 react ] ]",
"dev": "webpack-dev-server --progress",
"dev1": "webpack-dev-server --history-api-fallback",
"test": " mocha --compilers js:babel-core/register ",
"clean": "rm -rf dist/*",
"deploy": "set NODE_ENV=production && webpack --progress -p --config webpack.production.config.js",
"eslint": "eslint src/ --fix",
"Copy": "cp -r lib dist && cp favicon.ico dist"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.23.0",
"echarts": "^3.4.0",
"immutable": "^3.8.1",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.6.0",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.2",
"react-icons": "^2.2.5",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"css-loader": "^0.26.4",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"http-proxy-middleware": "^0.17.4",
"node-sass": "^4.5.0",
"redux-devtools": "^3.3.2",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-md5-hash": "0.0.5"
}
}