-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "express-react-redux-boilerplate",
"version": "0.0.0",
"description": "",
"private": true,
"author": "Jovani Warguez",
"main": "bin/www",
"repository": {
"type": "git",
"url": "https://github.com/jovanidash21/express-react-redux-boilerplate.git"
},
"scripts": {
"start": "node bin/www",
"build": "run-s webpack:prod node:prod",
"dev": "run-p webpack:dev node:dev",
"webpack:prod": "webpack -p",
"webpack:dev": "webpack --watch",
"node:prod": "cross-env NODE_ENV=production node bin/www",
"node:dev": "nodemon bin/www --watch build"
},
"dependencies": {
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"debug": "^2.6.8",
"express": "^4.15.3",
"morgan": "^1.8.2",
"npm-run-all": "^4.1.1",
"pug": "^2.0.0-rc.3",
"serve-favicon": "^2.4.3"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"browser-sync": "^2.18.13",
"cross-env": "^5.0.3",
"css-loader": "^0.28.4",
"nodemon": "^1.11.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^4.3.0",
"redux-thunk": "^2.2.0",
"style-loader": "^0.18.2",
"webpack": "^3.4.1"
}
}