-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "hapi-react-starter-kit",
"version": "0.0.1",
"description": "React Starter Kit with Hot Reloading",
"main": "index.js",
"repository": "https://github.com/nilshartmann/hapi-react-starter-kit",
"scripts": {
"start": "node devServerHapi.js",
"build:clean": "rimraf client/public/dist",
"build:prod": "npm run build:clean && cross-env NODE_ENV=production webpack --config webpack.config.prod.js"
},
"author": "Nils Hartmann, Oliver Zeigermann",
"license": "ISC",
"dependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.2"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"css-loader": "^0.23.1",
"cross-env": "^1.0.7",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"eslint-loader": "^1.2.0",
"eslint-plugin-react": "^3.14.0",
"eventsource-polyfill": "^0.9.6",
"hapi": "^12.1.0",
"hapi-webpack-plugin": "^1.3.0",
"inert": "^3.2.0",
"rimraf": "^2.5.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.10",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
}
}