-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "express-react-boilerplate",
"version": "1.0.0",
"description": "A Node JS based framework express boilerplate where React JS used as a front end framework.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "webpack",
"watch": "webpack --watch",
"prod": "webpack -p"
},
"keywords": [
"Node",
"JS",
"express",
"React",
"Search",
"Efile"
],
"author": "Rajesh Baidya",
"license": "ISC",
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.18.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"history": "^4.7.2",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"pug": "^2.0.0-rc.4",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.4",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"redux-promise-middleware": "^3.2.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.7.2",
"sass-lint": "^1.12.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.1",
"webpack": "^3.11.0",
"webpack-dev-middleware": "^2.0.5"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
}
}