-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.73 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
{
"name": "webpack-react-spa",
"version": "0.0.1",
"description": "Webpack react SPA for mtt scaffold",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --devtool eval -d --history-api-fallback --hot --inline --progress --colors --port 3000",
"build": "set NODE_ENV=production&&webpack --progress --colors -p",
"mock": "node ./mock-server/server.js 2618"
},
"license": "MIT",
"devDependencies": {
"postcss-loader": "^0.8.2",
"precss": "^1.4.0",
"autoprefixer": "^6.3.6",
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^2.10.0",
"less": "^2.6.1",
"less-loader": "^2.2.2",
"mockjs": "^1.0.1-beta2",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.12.4",
"url-loader": "^0.5.7",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0",
"webpack-hot-middleware": "^2.2.0",
"express": "^4.13.4"
},
"dependencies": {
"bootstrap": "^3.3.6",
"classnames": "^2.1.2",
"echarts": "^3.1.3",
"lodash": "^4.6.1",
"querystring": "^0.2.0",
"react": "^0.14.0",
"react-bootstrap": "^0.28.3",
"react-dom": "^0.14.0",
"react-redux": "^4.0.6",
"react-router": "^2.0.0-rc5",
"react-router-redux": "^2.1.0",
"redux": "^3.0.2",
"redux-actions": "^0.9.0",
"redux-async": "^2.0.1",
"redux-form": "^4.2.2",
"redux-thunk": "^2.0.1"
}
}