UNPKG

3.85 kBJSONView Raw
1{
2 "name": "webpack-dev-server",
3 "version": "4.2.1",
4 "description": "Serves a webpack app. Updates the browser on changes.",
5 "bin": "bin/webpack-dev-server.js",
6 "main": "lib/Server.js",
7 "files": [
8 "bin",
9 "lib",
10 "client"
11 ],
12 "engines": {
13 "node": ">= 12.13.0"
14 },
15 "scripts": {
16 "fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
17 "lint:js": "eslint . --cache",
18 "lint:type": "tsc --noEmit",
19 "lint": "npm-run-all lint:js lint:type fmt:check",
20 "fmt": "npm run fmt:check -- --write",
21 "fix:js": "npm run lint:js -- --fix",
22 "fix": "npm-run-all fix:js fmt",
23 "commitlint": "commitlint --from=master",
24 "build": "npm-run-all build:client",
25 "build:client": "rimraf ./client/* && babel client-src/ --out-dir client/ --ignore \"client-src/webpack.config.js\" --ignore \"client-src/modules\" && webpack --config client-src/webpack.config.js",
26 "test:only": "jest",
27 "test:coverage": "npm run test:only -- --coverage",
28 "test:watch": "npm run test:coverage --watch",
29 "test": "npm run test:coverage",
30 "pretest": "npm run lint",
31 "prepare": "husky install && npm run build",
32 "release": "standard-version"
33 },
34 "dependencies": {
35 "ansi-html-community": "^0.0.8",
36 "bonjour": "^3.5.0",
37 "chokidar": "^3.5.1",
38 "colorette": "^1.2.2",
39 "compression": "^1.7.4",
40 "connect-history-api-fallback": "^1.6.0",
41 "del": "^6.0.0",
42 "express": "^4.17.1",
43 "graceful-fs": "^4.2.6",
44 "html-entities": "^2.3.2",
45 "http-proxy-middleware": "^2.0.0",
46 "internal-ip": "^6.2.0",
47 "ipaddr.js": "^2.0.1",
48 "open": "^8.0.9",
49 "p-retry": "^4.5.0",
50 "portfinder": "^1.0.28",
51 "schema-utils": "^3.1.0",
52 "selfsigned": "^1.10.11",
53 "serve-index": "^1.9.1",
54 "sockjs": "^0.3.21",
55 "spdy": "^4.0.2",
56 "strip-ansi": "^7.0.0",
57 "url": "^0.11.0",
58 "webpack-dev-middleware": "^5.1.0",
59 "ws": "^8.1.0"
60 },
61 "devDependencies": {
62 "@babel/cli": "^7.14.5",
63 "@babel/core": "^7.14.6",
64 "@babel/eslint-parser": "^7.14.7",
65 "@babel/plugin-transform-object-assign": "^7.14.5",
66 "@babel/plugin-transform-runtime": "^7.14.5",
67 "@babel/preset-env": "^7.14.5",
68 "@babel/runtime": "^7.14.5",
69 "@commitlint/cli": "^13.1.0",
70 "@commitlint/config-conventional": "^13.1.0",
71 "acorn": "^8.2.4",
72 "babel-jest": "^27.0.2",
73 "babel-loader": "^8.2.2",
74 "body-parser": "^1.19.0",
75 "core-js": "^3.12.1",
76 "css-loader": "^5.2.4",
77 "eslint": "^7.29.0",
78 "eslint-config-prettier": "^8.3.0",
79 "eslint-config-webpack": "^1.2.5",
80 "eslint-plugin-import": "^2.23.2",
81 "execa": "^5.1.1",
82 "file-loader": "^6.2.0",
83 "html-webpack-plugin": "^4.5.2",
84 "http-proxy": "^1.18.1",
85 "husky": "^7.0.0",
86 "jest": "^27.0.4",
87 "klona": "^2.0.4",
88 "less": "^4.1.1",
89 "less-loader": "^7.3.0",
90 "lint-staged": "^11.0.0",
91 "marked": "^3.0.0",
92 "memfs": "^3.2.2",
93 "npm-run-all": "^4.1.5",
94 "prettier": "^2.3.1",
95 "puppeteer": "^10.0.0",
96 "require-from-string": "^2.0.2",
97 "rimraf": "^3.0.2",
98 "sockjs-client": "^1.5.1",
99 "standard-version": "^9.3.0",
100 "strip-ansi-v6": "npm:strip-ansi@^6.0.0",
101 "style-loader": "^2.0.0",
102 "supertest": "^6.1.3",
103 "tcp-port-used": "^1.0.2",
104 "typescript": "^4.2.4",
105 "url-loader": "^4.1.1",
106 "webpack": "^5.50.0",
107 "webpack-cli": "^4.7.2",
108 "webpack-merge": "^5.8.0"
109 },
110 "peerDependencies": {
111 "webpack": "^4.37.0 || ^5.0.0"
112 },
113 "peerDependenciesMeta": {
114 "webpack-cli": {
115 "optional": true
116 }
117 },
118 "author": "Tobias Koppers @sokra",
119 "bugs": "https://github.com/webpack/webpack-dev-server/issues",
120 "homepage": "https://github.com/webpack/webpack-dev-server#readme",
121 "repository": "https://github.com/webpack/webpack-dev-server.git",
122 "license": "MIT"
123}