forked from 60frames/webpack-hot-server-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "webpack-hot-server-middleware",
"version": "1.0.0",
"description": "Hot updates Webpack bundles on the server",
"main": "src/index.js",
"typings": "index.d.ts",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules $(yarn bin jest)"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "https://github.com/60frames/webpack-hot-server-middleware.git"
},
"author": {
"name": "Richard Scarrott",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"debug": "^3.1.0",
"require-from-string": "^2.0.1",
"source-map-support": "^0.5.3"
},
"peerDependencies": {
"webpack": "*"
},
"devDependencies": {
"@babel/core": "7.23.5",
"@babel/preset-env": "7.23.5",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"babel-plugin-istanbul": "^4.1.5",
"coveralls": "^3.0.0",
"express": "4.18.2",
"jest": "29.7.0",
"module-from-string": "3.3.0",
"supertest": "^3.0.0",
"webpack": "5.89.0",
"webpack-dev-middleware": "6.1.1"
},
"engines": {
"node": ">=16.20.2"
},
"packageManager": "[email protected]"
}