forked from tlivings/hapi-react-redux-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.58 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
{
"name": "reactredux-example",
"description": "",
"version": "0.0.1",
"author": "Trevor Livingston <tlivings@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/tlivings/reactredux-example.git"
},
"bugs": "http://github.com/tlivings/reactredux-example/issues",
"engines": {
"node": ">= 4.0.0"
},
"dependencies": {
"babel-regenerator-runtime": "^6.3.13",
"babel-runtime": "^6.3.19",
"css-modules-require-hook": "^4.0.0",
"ejs": "^2.4.1",
"good": "^6.6.0",
"good-console": "^5.3.1",
"hapi": "^13.2.1",
"hapi-configure": "^2.0.0",
"hapi-webpack-plugin": "^1.3.0",
"inert": "^3.2.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"react-router-redux": "^4.0.0",
"redux": "^3.3.1",
"vision": "^4.0.1"
},
"devDependencies": {
"babel-cli": "^6.1.4",
"babel-eslint": "^4.0.0",
"babel-plugin-syntax-async-functions": "^6.1.18",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-arrow-functions": "^6.4.0",
"babel-plugin-transform-es2015-for-of": "^6.3.13",
"babel-plugin-transform-react-jsx": "^6.6.5",
"babel-plugin-transform-regenerator": "^6.4.4",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"copyfiles": "^0.2.1",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-hapi": "^8.0.0",
"eslint-plugin-hapi": "^4.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.10.0",
"istanbul": "^0.4.1",
"style-loader": "^0.13.0",
"tape": "^4.2.2",
"webpack": "^1.12.14"
},
"scripts": {
"build": "npm run compile && npm run webpack",
"compile": "babel --out-dir dist server.js webpack.config.js lib/**/*.js && copyfiles lib/**/*.css dist/ && copyfiles config/*.json dist/",
"cover": "npm run compile && babel-node --plugins transform-es2015-arrow-functions node_modules/.bin/istanbul cover node_modules/.bin/tape -- test/*.js",
"lint": "eslint server.js lib",
"start": "node -r css-modules-require-hook/preset dist/server.js",
"test": "npm run compile && npm run testconfigs && babel-node --plugins transform-es2015-arrow-functions node_modules/.bin/tape test/*.js",
"testconfigs": "node -e 'require(\"./config/config.json\"); require(\"./config/development.json\")'",
"webpack": "webpack --progress --color -p --config dist/webpack.config.js"
},
"main": "./dist/lib"
}