-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.01 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
{
"name": "React shopping application demo",
"version": "1.0.0",
"description": "React shopping application demo",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"webpack": "webpack --progress --colors --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": ""
},
"dependencies": {
"consolidate": "^0.14.5",
"express": "^4.14.0",
"handlebars": "^4.0.6",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"redux": "^3.6.0",
"react-redux": "^4.4.5",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"nodemon": "^1.11.0",
"webpack": "^2.2.0",
"webpack-build-notifier": "^0.1.13"
}
}