-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 KB
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
{
"name": "fastify-webpack-hmr",
"version": "3.0.0",
"description": "Webpack hot module reloading for Fastify",
"main": "plugin.js",
"engines": ">=10",
"scripts": {
"coverage": "tap test/**/*.test.js --cov",
"lint": "standard --fix",
"test": "standard --fix && tap test/**/*.test.js",
"example": "node example/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lependu/fastify-webpack-hmr.git"
},
"keywords": [
"fastify",
"fastify-plugin",
"webpack",
"hmr"
],
"author": "Ákos Kovács <lependu@protonmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lependu/fastify-webpack-hmr/issues"
},
"homepage": "https://github.com/lependu/fastify-webpack-hmr#readme",
"devDependencies": {
"fastify": "^3.0.3",
"simple-get": "^4.0.0",
"standard": "^16.0.0",
"tap": "^14.10.7"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"middie": "^5.1.0",
"webpack": "^4.43.0",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
},
"nyc": {
"exclude": [
"example/**/*",
"test/*"
]
}
}