| 1 | {
|
|---|
| 2 | "name": "webpack-dev-server",
|
|---|
| 3 | "version": "4.15.2",
|
|---|
| 4 | "description": "Serves a webpack app. Updates the browser on changes.",
|
|---|
| 5 | "bin": "bin/webpack-dev-server.js",
|
|---|
| 6 | "main": "lib/Server.js",
|
|---|
| 7 | "types": "types/lib/Server.d.ts",
|
|---|
| 8 | "author": "Tobias Koppers @sokra",
|
|---|
| 9 | "bugs": "https://github.com/webpack/webpack-dev-server/issues",
|
|---|
| 10 | "homepage": "https://github.com/webpack/webpack-dev-server#readme",
|
|---|
| 11 | "repository": "https://github.com/webpack/webpack-dev-server",
|
|---|
| 12 | "license": "MIT",
|
|---|
| 13 | "funding": {
|
|---|
| 14 | "type": "opencollective",
|
|---|
| 15 | "url": "https://opencollective.com/webpack"
|
|---|
| 16 | },
|
|---|
| 17 | "files": [
|
|---|
| 18 | "bin",
|
|---|
| 19 | "lib",
|
|---|
| 20 | "client",
|
|---|
| 21 | "types"
|
|---|
| 22 | ],
|
|---|
| 23 | "engines": {
|
|---|
| 24 | "node": ">= 12.13.0"
|
|---|
| 25 | },
|
|---|
| 26 | "scripts": {
|
|---|
| 27 | "fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
|
|---|
| 28 | "lint:js": "eslint . --cache",
|
|---|
| 29 | "lint:types": "tsc --pretty --noEmit",
|
|---|
| 30 | "lint": "npm-run-all -p \"fmt:**\" \"lint:**\"",
|
|---|
| 31 | "fmt": "npm run fmt:check -- --write",
|
|---|
| 32 | "fix:js": "npm run lint:js -- --fix",
|
|---|
| 33 | "fix": "npm-run-all fix:js fmt",
|
|---|
| 34 | "commitlint": "commitlint --from=master",
|
|---|
| 35 | "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",
|
|---|
| 36 | "build:types": "rimraf ./types/* && tsc --declaration --emitDeclarationOnly --outDir types && node ./scripts/extend-webpack-types.js && prettier \"types/**/*.ts\" --write && prettier \"types/**/*.ts\" --write",
|
|---|
| 37 | "build": "npm-run-all -p \"build:**\"",
|
|---|
| 38 | "test:only": "jest",
|
|---|
| 39 | "test:coverage": "npm run test:only -- --coverage",
|
|---|
| 40 | "test:watch": "npm run test:coverage --watch",
|
|---|
| 41 | "test": "npm run test:coverage",
|
|---|
| 42 | "pretest": "npm run lint",
|
|---|
| 43 | "prepare": "husky install && npm run build",
|
|---|
| 44 | "release": "standard-version"
|
|---|
| 45 | },
|
|---|
| 46 | "dependencies": {
|
|---|
| 47 | "@types/bonjour": "^3.5.9",
|
|---|
| 48 | "@types/connect-history-api-fallback": "^1.3.5",
|
|---|
| 49 | "@types/express": "^4.17.13",
|
|---|
| 50 | "@types/serve-index": "^1.9.1",
|
|---|
| 51 | "@types/serve-static": "^1.13.10",
|
|---|
| 52 | "@types/sockjs": "^0.3.33",
|
|---|
| 53 | "@types/ws": "^8.5.5",
|
|---|
| 54 | "ansi-html-community": "^0.0.8",
|
|---|
| 55 | "bonjour-service": "^1.0.11",
|
|---|
| 56 | "chokidar": "^3.5.3",
|
|---|
| 57 | "colorette": "^2.0.10",
|
|---|
| 58 | "compression": "^1.7.4",
|
|---|
| 59 | "connect-history-api-fallback": "^2.0.0",
|
|---|
| 60 | "default-gateway": "^6.0.3",
|
|---|
| 61 | "express": "^4.17.3",
|
|---|
| 62 | "graceful-fs": "^4.2.6",
|
|---|
| 63 | "html-entities": "^2.3.2",
|
|---|
| 64 | "http-proxy-middleware": "^2.0.3",
|
|---|
| 65 | "ipaddr.js": "^2.0.1",
|
|---|
| 66 | "launch-editor": "^2.6.0",
|
|---|
| 67 | "open": "^8.0.9",
|
|---|
| 68 | "p-retry": "^4.5.0",
|
|---|
| 69 | "rimraf": "^3.0.2",
|
|---|
| 70 | "schema-utils": "^4.0.0",
|
|---|
| 71 | "selfsigned": "^2.1.1",
|
|---|
| 72 | "serve-index": "^1.9.1",
|
|---|
| 73 | "sockjs": "^0.3.24",
|
|---|
| 74 | "spdy": "^4.0.2",
|
|---|
| 75 | "webpack-dev-middleware": "^5.3.4",
|
|---|
| 76 | "ws": "^8.13.0"
|
|---|
| 77 | },
|
|---|
| 78 | "devDependencies": {
|
|---|
| 79 | "@babel/cli": "^7.17.3",
|
|---|
| 80 | "@babel/core": "^7.20.2",
|
|---|
| 81 | "@babel/eslint-parser": "^7.17.0",
|
|---|
| 82 | "@babel/plugin-transform-object-assign": "^7.14.5",
|
|---|
| 83 | "@babel/plugin-transform-runtime": "^7.17.0",
|
|---|
| 84 | "@babel/preset-env": "^7.20.2",
|
|---|
| 85 | "@babel/runtime": "^7.20.1",
|
|---|
| 86 | "@commitlint/cli": "^16.2.3",
|
|---|
| 87 | "@commitlint/config-conventional": "^16.2.1",
|
|---|
| 88 | "@types/compression": "^1.7.2",
|
|---|
| 89 | "@types/default-gateway": "^3.0.1",
|
|---|
| 90 | "@types/node": "^18.11.9",
|
|---|
| 91 | "@types/node-forge": "^1.3.1",
|
|---|
| 92 | "@types/rimraf": "^3.0.2",
|
|---|
| 93 | "@types/sockjs-client": "^1.5.1",
|
|---|
| 94 | "@types/trusted-types": "^2.0.2",
|
|---|
| 95 | "acorn": "^8.2.4",
|
|---|
| 96 | "babel-jest": "^28.1.3",
|
|---|
| 97 | "babel-loader": "^8.2.4",
|
|---|
| 98 | "body-parser": "^1.19.2",
|
|---|
| 99 | "core-js": "^3.21.1",
|
|---|
| 100 | "css-loader": "^5.2.4",
|
|---|
| 101 | "eslint": "^8.28.0",
|
|---|
| 102 | "eslint-config-prettier": "^8.4.0",
|
|---|
| 103 | "eslint-config-webpack": "^1.2.5",
|
|---|
| 104 | "eslint-plugin-import": "^2.23.2",
|
|---|
| 105 | "execa": "^5.1.1",
|
|---|
| 106 | "file-loader": "^6.2.0",
|
|---|
| 107 | "html-webpack-plugin": "^4.5.2",
|
|---|
| 108 | "http-proxy": "^1.18.1",
|
|---|
| 109 | "husky": "^7.0.0",
|
|---|
| 110 | "jest": "^28.1.3",
|
|---|
| 111 | "jest-environment-jsdom": "^28.1.3",
|
|---|
| 112 | "klona": "^2.0.4",
|
|---|
| 113 | "less": "^4.1.1",
|
|---|
| 114 | "less-loader": "^7.3.0",
|
|---|
| 115 | "lint-staged": "^12.3.4",
|
|---|
| 116 | "marked": "^4.2.3",
|
|---|
| 117 | "memfs": "^3.4.12",
|
|---|
| 118 | "npm-run-all": "^4.1.5",
|
|---|
| 119 | "prettier": "^2.8.0",
|
|---|
| 120 | "puppeteer": "^13.4.1",
|
|---|
| 121 | "require-from-string": "^2.0.2",
|
|---|
| 122 | "rimraf": "^3.0.2",
|
|---|
| 123 | "sockjs-client": "^1.6.1",
|
|---|
| 124 | "standard-version": "^9.3.0",
|
|---|
| 125 | "strip-ansi-v6": "npm:strip-ansi@^6.0.0",
|
|---|
| 126 | "style-loader": "^2.0.0",
|
|---|
| 127 | "supertest": "^6.1.3",
|
|---|
| 128 | "tcp-port-used": "^1.0.2",
|
|---|
| 129 | "typescript": "^4.9.3",
|
|---|
| 130 | "url-loader": "^4.1.1",
|
|---|
| 131 | "wait-for-expect": "^3.0.2",
|
|---|
| 132 | "webpack": "^5.81.0",
|
|---|
| 133 | "webpack-cli": "^4.7.2",
|
|---|
| 134 | "webpack-merge": "^5.8.0"
|
|---|
| 135 | },
|
|---|
| 136 | "peerDependencies": {
|
|---|
| 137 | "webpack": "^4.37.0 || ^5.0.0"
|
|---|
| 138 | },
|
|---|
| 139 | "peerDependenciesMeta": {
|
|---|
| 140 | "webpack-cli": {
|
|---|
| 141 | "optional": true
|
|---|
| 142 | },
|
|---|
| 143 | "webpack": {
|
|---|
| 144 | "optional": true
|
|---|
| 145 | }
|
|---|
| 146 | }
|
|---|
| 147 | }
|
|---|