-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "react-tutorial",
"version": "0.0.0",
"private": true,
"description": "Code from the React tutorial.",
"main": "server.js",
"dependencies": {
"body-parser": "^1.4.3",
"cookie-parser": "^1.4.3",
"express": "^4.4.5",
"morgan": "^1.7.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"sass": "^0.5.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"concurrently": "^3.4.0",
"css-loader": "^0.26.1",
"immutable": "^3.8.1",
"json-loader": "^0.5.4",
"jsx-loader": "^0.13.2",
"moment": "^2.17.1",
"mysql": "^2.12.0",
"node-sass": "^4.1.0",
"react-router": "^3.0.0",
"redux-thunk": "^2.1.0",
"rx": "^4.1.0",
"sass-loader": "^4.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack-dev-server": "^1.16.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"webpack": "webpack --watch",
"webpackP": "webpack -p",
"deploy": "export NODE_ENV=production&& concurrently \"npm run start\" \"npm run webpackP\" ",
"build": "concurrently \"npm run start\" \"npm run webpack\" "
},
"repository": {},
"keywords": [
"react",
"blog"
],
"author": "ju",
"bugs": {
"url": ""
},
"homepage": ""
}