-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
77 lines (77 loc) · 2.6 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
{
"name": "hapi-universal-redux",
"description": "Isomorphic starterkit with server-side React rendering.",
"version": "1.1.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Luandro/hapi-universal-redux.git"
},
"homepage": "https://github.com/Luandro/hapi-universal-redux",
"keywords": [
"react",
"react-router",
"isomorphic",
"starter",
"boilerplate",
"template",
"webpack",
"hapi",
"redux",
"redux-dev-tools"
],
"main": "dist/server.js",
"scripts": {
"start": "forever --minUptime 1000 --spinSleepTime 1000 -c \"node --harmony\" ./dist/server.js",
"build-server": "webpack --colors --display-error-details --config configs/webpack.server.js",
"build-client": "webpack --colors --display-error-details --config configs/webpack.client.js",
"build": "concurrently \"npm run build-server\" \"npm run build-client\"",
"watch-server": "webpack --watch --verbose --colors --display-error-details --config configs/webpack.server-watch.js",
"watch-server-start": "node node_modules/just-wait --pattern \"dist/*.js\" && npm run start",
"watch-client": "webpack-dev-server --config configs/webpack.client-watch.js",
"production": "cross-env NODE_ENV=production npm run build && cross-env NODE_ENV=production npm run start",
"dev": "concurrently --kill-others \"npm run watch-server-start\" \"npm run watch-server\" \"npm run watch-client\"",
"postinstall": "webpack -p --config configs/webpack.client.js"
},
"dependencies": {
"babel": "6.5.2",
"babel-core": "6.18.2",
"babel-loader": "^6.2.8",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "6.16.0",
"concurrently": "^3.1.0",
"cross-env": "^3.1.3",
"file-loader": "^0.9.0",
"forever": "0.15.3",
"h2o2": "^5.4.0",
"hapi": "^15.2.0",
"inert": "^4.0.2",
"isomorphic-fetch": "^2.2.1",
"piping": "1.0.0-rc.4",
"radium": "^0.18.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"webpack": "^1.13.3",
"webpack-node-externals": "^1.5.4"
},
"devDependencies": {
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-react": "^6.5.0",
"json-loader": "^0.5.4",
"just-wait": "1.0.9",
"webpack-dev-server": "^1.16.2"
},
"engines": {
"node": ">=4.0.0"
}
}