This repository has been archived by the owner on Feb 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
75 lines (75 loc) · 2.49 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
{
"name": "minimal-hapi-react-webpack-hmr-sandbox",
"version": "5.0.0",
"description": "Minimal Hapi + React + Webpack + HMR (hot module reloading) Sandbox",
"keywords": [
"hapi",
"react",
"webpack",
"HMR",
"boilerplate",
"sandbox"
],
"license": "MIT",
"author": "Nikita Gazarov <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/raquo/minimal-hapi-react-webpack"
},
"main": "src/server.js",
"engines": {
"node": "^4.2.2"
},
"scripts": {
"start": "NODE_ENV=production node --harmony src/server.js",
"build": "NODE_ENV=production node --harmony src/scripts/make.js && NODE_ENV=production webpack -p --config src/config/webpack-config.js",
"webpack": "NODE_ENV=development node --harmony src/scripts/make.js && NODE_ENV=development node --harmony src/webpack-dev-server.js",
"dev": "NODE_ENV=development node --harmony src/scripts/make.js && NODE_ENV=development ./node_modules/nodemon/bin/nodemon.js --harmony src/server.js",
"make": "NODE_ENV=development node --harmony src/scripts/make.js",
"lint": "eslint . --ext .js --ext .jsx",
"lint-fix": "eslint . --ext .js --ext .jsx --fix",
"postinstall": "npm run build",
"test": "./node_modules/.bin/mocha --compilers jsx:babel-register --require ignore-styles ./tests/specs --recursive"
},
"dependencies": {
"assets-webpack-plugin": "3.5.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.2",
"babel-plugin-react-transform": "2.0.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"babel-register": "6.24.1",
"chai": "3.5.0",
"chalk": "1.1.3",
"css-loader": "0.28.0",
"hapi": "16.1.1",
"hapi-react-views": "9.2.1",
"ignore-styles": "5.0.1",
"inert": "4.2.0",
"jsdom": "9.12.0",
"mocha": "3.2.0",
"prop-types": "15.5.8",
"react": "15.5.4",
"react-dom": "15.5.4",
"rimraf": "2.6.1",
"style-loader": "0.16.1",
"vision": "4.1.1",
"webpack": "2.7.0",
"webpack-dev-middleware": "1.10.2",
"webpack-hot-middleware": "2.18.0"
},
"devDependencies": {
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-loader": "1.7.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"express": "4.15.2",
"h2o2": "5.4.0",
"nodemon": "1.11.0",
"react-transform-hmr": "1.0.4"
}
}