forked from cloudmu/react-redux-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "react-redux-starter-kit",
"version": "0.0.1",
"description": "Yet another React/Redux Starter Kit",
"scripts": {
"start": "babel-node server.js",
"build": "rimraf dist && NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"lint": "eslint src; exit 0",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudmu/react-redux-starter-kit.git"
},
"keywords": [
"react",
"reactjs",
"redux",
"reduxjs",
"react-router",
"bootstrap",
"webpack",
"flux",
"dashboard",
"boilerplate"
],
"author": "Yunjun Mu <[email protected]> (http://github.com/cloudmu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudmu/react-redux-starter-kit/issues"
},
"homepage": "https://github.com/cloudmu/react-redux-starter-kit",
"dependencies": {
"isomorphic-fetch": "^2.1.1",
"lodash": "^3.10.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "^4.0.0",
"history": "^1.13.0",
"react-router": "^1.0.0",
"redux": "^3.0.4",
"redux-logger": "^2.0.4",
"redux-thunk": "^1.0.0",
"classnames": "^2.2.0",
"express": "^4.13.3",
"body-parser": "^1.14.1",
"fixed-data-table": "^0.5.0"
},
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.33",
"babel-loader": "^5.3.2",
"webpack": "^1.12.4",
"style-loader": "^0.13.0",
"raw-loader": "^0.5.1",
"file-loader": "^0.8.4",
"url-loader": "^0.5.6",
"rimraf": "^2.4.3",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1",
"stats-webpack-plugin": "^0.2.2",
"babel-eslint": "^4.1.5",
"eslint": "^1.9.0",
"eslint-config-airbnb": "1.0.0",
"eslint-plugin-react": "^3.8.0"
}
}