This repository has been archived by the owner on Nov 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·122 lines (122 loc) · 4.45 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "hapi-react-hot-loader-example",
"version": "1.0.0",
"description": "Simple React Hot Loading example with Hapi Server-side rendering",
"engines": {
"node": ">=8.9.1"
},
"scripts": {
"---------- HELPERS -----------------------------------------------------------------------------": "",
"clean": "rimraf dist",
"buildServer": "cross-env BABEL_ENV=server ./node_modules/.bin/babel src --out-dir dist",
"watchServer": "cross-env BABEL_ENV=server ./node_modules/.bin/babel src --out-dir dist --watch",
"removeAndBuildServer": "npm run clean && npm run buildServer",
"start": "cross-env NODE_ENV=production node ./dist/server.js",
"---------- DEVELOPMENT -------------------------------------------------------------------------": "",
"predev": "npm run removeAndBuildServer",
"dev": "npm run watchServer & npm run devServer",
"devWindows": "concurrently --kill-others \"npm run watchServer\" \"npm run devServer\"",
"devServer": "cross-env BABEL_ENV=client NODE_ENV=development nodemon ./dist/server.js",
"---------- STAGING -----------------------------------------------------------------------------": "",
"prestaging:build": "npm run removeAndBuildServer",
"staging:build": "cross-env BABEL_ENV=client NODE_ENV=staging webpack",
"staging": "npm run staging:build && npm run start",
"---------- PRODUCTION --------------------------------------------------------------------------": "",
"preprod:build": "npm run removeAndBuildServer",
"prod:build": "cross-env BABEL_ENV=client NODE_ENV=production webpack -p",
"prod": "npm run prod:build && npm run start",
"---------- TESTING -----------------------------------------------------------------------------": "",
"test": "npm run lint && npm run unit",
"lint": "eslint src --ext .js,.jsx",
"unit": "jest",
"------------------------------------------------------------------------------------------------": ""
},
"repository": {
"type": "git",
"url": "https://github.com/codeBelt/hapi-react-hot-loader-example"
},
"keywords": [
"hapi",
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack"
],
"author": "codeBelt",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.2",
"babel-loader": "7.1.4",
"babel-plugin-system-import-transformer": "3.1.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-watch": "2.0.7",
"concurrently": "3.5.1",
"copy-webpack-plugin": "4.5.1",
"cross-env": "5.1.4",
"css-hot-loader": "1.3.9",
"css-loader": "0.28.11",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-filenames": "1.2.0",
"eslint-plugin-import": "2.10.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"extract-text-webpack-plugin": "3.0.2",
"html-webpack-harddisk-plugin": "0.2.0",
"html-webpack-plugin": "3.2.0",
"node-sass": "4.8.3",
"nodemon": "1.17.3",
"rimraf": "2.6.2",
"robotstxt-webpack-plugin": "4.0.1",
"sass-loader": "6.0.7",
"style-loader": "0.20.3",
"stylelint": "9.2.0",
"stylelint-config-standard": "18.2.0",
"stylelint-order": "0.8.1",
"webpack-dev-middleware": "3.1.0",
"webpack-hot-middleware": "2.21.2",
"webpack-simple-progress-plugin": "0.0.4",
"write-file-webpack-plugin": "4.2.0"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"bootstrap": "4.1.3",
"classnames": "2.2.5",
"fetch-everywhere": "1.0.5",
"form2js": "1.0.0",
"fs-extra": "5.0.0",
"hapi": "17.3.1",
"hapi-webpack-plugin": "3.0.0",
"history": "4.7.2",
"inert": "5.1.0",
"node-notifier": "5.2.1",
"react": "16.3.1",
"react-async-bootstrapper": "2.1.0",
"react-async-component": "2.0.0",
"react-dom": "16.3.1",
"react-hot-loader": "3.1.3",
"react-redux": "5.0.7",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"react-router-redux": "5.0.0-alpha.8",
"redux": "3.7.2",
"redux-devtools-extension": "2.13.2",
"redux-form": "7.3.0",
"redux-saga": "0.16.0",
"serialize-javascript": "1.4.0",
"webpack": "3.11.0"
}
}