forked from SimonDegraeve/hapi-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "hapi-webpack-plugin",
"version": "3.0.0",
"description": "Webpack middleware for Hapi. Supports HMR.",
"homepage": "https://github.com/SimonDegraeve/hapi-webpack-plugin",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/SimonDegraeve/hapi-webpack-plugin.git"
},
"keywords": [
"hapi",
"webpack",
"live-reload",
"dev-server"
],
"author": "Simon Degraeve <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimonDegraeve/hapi-webpack-plugin/issues"
},
"dependencies": {
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.1",
"webpack-hot-middleware": "^2.21.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"eslint": "^4.12.1",
"eslint-plugin-babel": "^4.1.2"
}
}