-
-
Notifications
You must be signed in to change notification settings - Fork 382
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.15 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "webpack-dev-middleware",
"version": "8.0.2",
"description": "A development middleware for webpack",
"keywords": [
"webpack",
"middleware",
"development"
],
"homepage": "https://github.com/webpack/webpack-dev-middleware",
"bugs": "https://github.com/webpack/webpack-dev-middleware/issues",
"repository": "webpack/webpack-dev-middleware",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"license": "MIT",
"author": "Tobias Koppers @sokra",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"lint:prettier": "prettier --cache --list-different .",
"lint:code": "eslint --cache .",
"lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
"lint:types": "tsc --pretty --noEmit",
"lint": "npm-run-all -l -p \"lint:**\"",
"fix:js": "npm run lint:code -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"fix": "npm-run-all -l fix:js fix:prettier",
"clean": "del-cli dist types",
"prebuild": "npm run clean",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
"build:code": "babel src -d dist --copy-files",
"build": "npm-run-all -p \"build:**\"",
"test:only": "node --experimental-vm-modules ./node_modules/jest-cli/bin/jest",
"test:watch": "npm run test:only -- --watch",
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
"pretest": "npm run lint",
"test": "npm run test:coverage",
"prepare": "husky && npm run build",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"dependencies": {
"memfs": "^4.56.10",
"mime-types": "^3.0.2",
"on-finished": "^2.4.1",
"range-parser": "^1.2.1",
"schema-utils": "^4.3.3"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@changesets/cli": "^2.30.0",
"@changesets/get-github-info": "^0.8.0",
"@fastify/express": "^4.0.2",
"@hapi/hapi": "^21.3.7",
"@hono/node-server": "^1.12.0",
"@types/connect": "^3.4.35",
"@types/express": "^5.0.2",
"@types/mime-types": "^3.0.1",
"@types/node": "^22.3.0",
"@types/on-finished": "^2.3.4",
"babel-jest": "^30.1.2",
"connect": "^3.7.0",
"cspell": "^9.6.2",
"deepmerge": "^4.2.2",
"del-cli": "^7.0.0",
"eslint": "^9.28.0",
"eslint-config-webpack": "^4.5.0",
"execa": "^9.6.1",
"express": "^5.1.0",
"express-4": "npm:express@^4",
"fastify": "^5.2.1",
"file-loader": "^6.2.0",
"finalhandler": "^2.1.0",
"hono": "^4.4.13",
"husky": "^9.1.3",
"jest": "^30.1.3",
"koa": "^3.0.0",
"lint-staged": "^16.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.0",
"router": "^2.2.0",
"supertest": "^7.0.0",
"typescript": "^5.3.3",
"webpack": "^5.101.0"
},
"peerDependencies": {
"webpack": "^5.101.0"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
}
},
"engines": {
"node": ">= 20.9.0"
}
}