-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "react-start-kit",
"version": "0.1.0",
"private": false,
"main": "server.js",
"scripts": {
"start": "node server",
"build": "webpack --config webpack.production.js --progress && npm run clean && mv _dist dist",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/jovey-zheng/react-start-kit"
},
"license": "MIT",
"devDependencies": {
"@ersinfotech/merge": "1.0.0",
"babel-core": "6.3.26",
"babel-eslint": "5.0.0-beta6",
"babel-loader": "6.2.0",
"babel-plugin-antd": "0.1.3",
"babel-plugin-lodash": "1.0.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.3.13",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-react-hmre": "1.0.1",
"babel-preset-stage-0": "6.3.13",
"babel-runtime": "6.3.19",
"css-loader": "^0.23.1",
"eslint": "1.10.3",
"eslint-plugin-babel": "3.0.0",
"eslint-plugin-react": "3.13.1",
"express": "4.13.3",
"extract-text-webpack-plugin": "0.8.2",
"file-loader": "0.8.4",
"html-webpack-plugin": "^2.22.0",
"rimraf": "2.4.3",
"style-loader": "0.12.3",
"webpack": "1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.12.0"
},
"dependencies": {
"antd": "^1.7.0",
"bluebird": "2.9.34",
"classnames": "2.1.3",
"font-awesome": "4.6.3",
"history": "1.13.1",
"lodash": "3.10.1",
"moment": "2.10.6",
"normalizr": "1.0.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "4.0.0",
"react-router": "^2.6.1",
"react-router-redux": "^4.0.4",
"redux": "3.0.4",
"redux-logger": "0.0.3",
"redux-thunk": "^2.1.0"
}
}