-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
{
"name": "hapi-webpack-plugin-2",
"version": "1.0.2",
"description": "Webpack middleware for Hapi. Supports HMR.",
"author": "Martin Litvaj <[email protected]> (http://litvaj.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Kamahl19/hapi-webpack-plugin-2.git"
},
"bugs": {
"url": "https://github.com/Kamahl19/hapi-webpack-plugin-2/issues"
},
"keywords": [
"hapi",
"webpack",
"live-reload",
"dev-server",
"dev-middleware",
"hot-middleware"
],
"main": "dist/index.js",
"umd:main": "dist/hapi-webpack-plugin-2.umd.production.js",
"module": "dist/hapi-webpack-plugin-2.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write '**/*.{ts,json,md}'",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test"
},
"peerDependencies": {
"@hapi/hapi": "*",
"webpack": "*"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/connect": "^3.4.32",
"@types/hapi__hapi": "^18.2.5",
"@types/jest": "^24.0.15",
"@types/webpack-dev-middleware": "^2.0.3",
"@types/webpack-hot-middleware": "^2.16.5",
"husky": "^3.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"tsdx": "^0.6.1",
"tslib": "^1.10.0",
"typescript": "^3.5.3",
"webpack": "^4.35.3"
},
"dependencies": {
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
}
}