-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "@glints/hapi-webpack-dev-server-plugin",
"version": "4.0.0",
"description": "A plugin for hapi to expose webpack-dev-server.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/glints-dev/hapi-webpack-dev-server-plugin",
"author": "Wong Yong Jie <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc --declaration",
"clean": "rm -r dist/",
"eslint": "eslint -c .eslintrc.js --ext .ts ."
},
"devDependencies": {
"@types/hapi__hapi": "^20.0.13",
"@types/webpack": "^5.28.0",
"@types/webpack-hot-middleware": "^2.25.6",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-dev-middleware": "^5.3.3"
},
"peerDependencies": {
"@hapi/hapi": ">= 18",
"webpack": ">= 5",
"webpack-dev-middleware": ">= 5",
"webpack-hot-middleware": ">= 2"
},
"publishConfig": {
"access": "public"
}
}