-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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
{
"name": "react-redux-webpack-express",
"version": "1.0.0",
"description": "Starter kit",
"main": "index.js",
"repository": "https://github.com/kennrll18/react-redux-webpack-express.git",
"scripts": {
"dev": "webpack-dev-server --inline --hot",
"test": "",
"start": "node server/index.js",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"eslint": "eslint .",
"jscs": "jscs ."
},
"author": "Kenn Lipa",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"cross-env": "^5.0.1",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.29.0",
"multer": "^1.3.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"redux": "^3.7.1",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^4.3.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"stats-webpack-plugin": "^0.6.1",
"webpack": "^3.2.0",
"webpack-dev-server": "^2.5.1",
"webpack-hot-middleware": "^2.18.2"
}
}