This repository was archived by the owner on Dec 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·120 lines (120 loc) · 4.43 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
{
"name": "hapi-react-hot-loader-example",
"version": "1.0.0",
"description": "Simple React Hot Loading example with Hapi Server-side rendering",
"scripts": {
"---------- HELPERS -----------------------------------------------------------------------------": "",
"remove": "cross-env rimraf dist",
"buildServer": "cross-env tsc -project tsconfig.server.json",
"watchServer": "cross-env tsc -watch -project tsconfig.server.json",
"removeAndBuildServer": "cross-env npm run remove && npm run buildServer",
"start": "cross-env NODE_ENV=production node ./dist/server.js",
"---------- DEVELOPMENT -------------------------------------------------------------------------": "",
"predev": "cross-env npm run removeAndBuildServer",
"dev": "cross-env npm run watchServer & npm run devServer",
"devServer": "cross-env BABEL_ENV=client NODE_ENV=development nodemon ./dist/server.js",
"---------- STAGING -----------------------------------------------------------------------------": "",
"prestaging:build": "cross-env npm run removeAndBuildServer",
"staging:build": "cross-env BABEL_ENV=client NODE_ENV=staging webpack -p",
"staging": "cross-env npm run staging:build && npm run start",
"---------- PRODUCTION --------------------------------------------------------------------------": "",
"preprod:build": "cross-env npm run removeAndBuildServer",
"prod:build": "cross-env BABEL_ENV=client NODE_ENV=production webpack -p",
"prod": "cross-env npm run prod:build && npm run start",
"---------- TESTING -----------------------------------------------------------------------------": "",
"test": "cross-env npm run lint && npm run unit",
"lint": "cross-env eslint src --ext .js,.jsx",
"unit": "cross-env 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": {
"@types/fs-extra": "4.0.0",
"@types/hapi": "16.1.8",
"@types/inert": "4.2.2",
"@types/node": "8.0.20",
"@types/node-notifier": "0.0.28",
"@types/react": "16.0.2",
"@types/react-dom": "15.5.2",
"@types/react-hot-loader": "3.0.3",
"@types/react-redux": "5.0.1",
"@types/react-router": "4.0.14",
"@types/react-router-dom": "4.0.7",
"@types/redux-form": "7.0.2",
"@types/webpack": "3.0.8",
"@types/webpack-env": "1.13.0",
"awesome-typescript-loader": "3.2.2",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-watch": "2.0.7",
"copy-webpack-plugin": "4.0.1",
"cross-env": "5.0.1",
"css-hot-loader": "1.3.0",
"css-loader": "0.28.4",
"eslint": "4.4.1",
"eslint-config-airbnb": "15.1.0",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-filenames": "1.2.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.2.0",
"extract-text-webpack-plugin": "2.1.0",
"html-webpack-harddisk-plugin": "0.1.0",
"html-webpack-plugin": "2.29.0",
"nodemon": "1.11.0",
"progress-bar-webpack-plugin": "1.10.0",
"rimraf": "2.6.1",
"robotstxt-webpack-plugin": "2.0.0",
"style-loader": "0.18.2",
"tslib": "1.7.1",
"typescript": "2.4.2",
"webpack-dev-middleware": "1.11.0",
"webpack-hot-middleware": "2.18.2"
},
"dependencies": {
"babel-polyfill": "6.23.0",
"bootstrap": "4.0.0-alpha.6",
"fetch-everywhere": "1.0.5",
"fs-extra": "4.0.1",
"hapi": "16.5.0",
"hapi-webpack-plugin": "2.0.0",
"inert": "4.2.1",
"node-notifier": "5.1.2",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-hot-loader": "next",
"react-redux": "5.0.5",
"react-router": "4.1.2",
"react-router-dom": "4.1.2",
"redux": "3.7.2",
"redux-devtools-extension": "2.13.2",
"redux-form": "7.0.3",
"redux-saga": "0.15.6",
"webpack": "2.2.0"
}
}