forked from Amin52J/React-Redux-Node-Mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.91 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-redux-node-mongodb",
"version": "2.2.0",
"scripts": {
"start": "nodemon ./server/index.js",
"watch": "webpack --watch",
"build": "NODE_ENV=production webpack",
"connect": "sudo mongod",
"db-list": "ps wuax | grep mongo"
},
"nodemonConfig": {
"ignore": [
"app/*",
"public/*"
]
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.14.1",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"create-file": "^1.0.1",
"csurf": "^1.9.0",
"express": "^4.13.3",
"express-rate-limit": "^2.6.0",
"express-session": "^1.7.6",
"file-system": "^2.2.2",
"helmet": "^3.4.0",
"jsonwebtoken": "^7.3.0",
"mongo-sanitize": "^1.0.0",
"mongoose": "^5.7.7",
"morgan": "^1.6.1",
"mustache": "^2.3.0",
"path": "^0.12.7",
"prompt": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^15.4.1",
"react-cookie": "^1.0.4",
"react-dom": "^15.4.1",
"react-redux": "^5.0.4",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"request": "^2.65.0",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.3.13",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.5",
"eslint": "^4.6.0",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.7",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"url-loader": "^0.5.9",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^3.5.5"
},
"license": "MIT",
"author": "Amin Jafari"
}