-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 855 Bytes
/
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
{
"name": "redux_app",
"version": "1.0.0",
"description": "testing redux with express",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch --config public/webpack.config.js"
},
"keywords": [
"redux",
"react",
"express",
"mongodb"
],
"author": "chris",
"license": "ISC",
"dependencies": {
"axios": "^0.16.1",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"mongodb": "^2.2.25",
"mongoose": "^4.9.4",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"webpack": "^2.3.3"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1"
}
}