-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.92 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.92 KB
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
{
"name": "universal-react",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently --kill-others \"npm run start-dev\" \"npm run hot\"",
"start-dev": "cross-env NODE_ENV=development nodemon bin/start-dev.js --exec babel-node --progress --colors --profile",
"hot": "cross-env NODE_ENV=development babel-node bin/hot.js --progress --colors",
"production": "concurrently \"npm run build\" \"npm run start-prod\"",
"start-prod": "cross-env NODE_ENV=production babel-node bin/start-prod.js",
"build": "cross-env NODE_ENV=production webpack -p --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expositor/universal-react.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/expositor/universal-react/issues"
},
"homepage": "https://github.com/expositor/universal-react#readme",
"dependencies": {
"axios": "^0.15.3",
"babel-runtime": "^6.22.0",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"express": "^4.14.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"concurrently": "^3.1.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.0",
"file-loader": "^0.10.0",
"json-loader": "^0.5.4",
"nodemon": "^1.11.0",
"react-hot-loader": "^1.3.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^1.16.3"
}
}