1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "webpack-dev-server",
|
3 |
|
|
"version": "3.10.3",
|
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 |
|
|
"ssl",
|
11 |
|
|
"client"
|
12 |
|
|
],
|
13 |
|
|
"engines": {
|
14 |
|
|
"node": ">= 6.11.5"
|
15 |
|
|
},
|
16 |
|
|
"scripts": {
|
17 |
|
|
"lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different",
|
18 |
|
|
"lint:js": "eslint . --cache",
|
19 |
|
|
"lint": "npm-run-all -l -p \"lint:**\"",
|
20 |
|
|
"lint:type": "tsc --noEmit",
|
21 |
|
|
"commitlint": "commitlint --from=master",
|
22 |
|
|
"security": "npm audit",
|
23 |
|
|
"test:only": "jest --forceExit",
|
24 |
|
|
"test:coverage": "npm run test:only -- --coverage",
|
25 |
|
|
"test:watch": "npm run test:coverage --watch",
|
26 |
|
|
"test": "npm run test:coverage",
|
27 |
|
|
"pretest": "npm run lint",
|
28 |
|
|
"prepare": "rimraf ./ssl/*.pem && npm run build:client",
|
29 |
|
|
"build:client:default": "babel client-src/default --out-dir client --ignore \"./client-src/default/*.config.js\"",
|
30 |
|
|
"build:client:clients": "babel client-src/clients --out-dir client/clients",
|
31 |
|
|
"build:client:index": "webpack ./client-src/default/index.js -o client/index.bundle.js --color --config client-src/default/webpack.config.js",
|
32 |
|
|
"build:client:live": "webpack ./client-src/live/index.js -o client/live.bundle.js --color --config client-src/live/webpack.config.js",
|
33 |
|
|
"build:client:sockjs": "webpack ./client-src/sockjs/index.js -o client/sockjs.bundle.js --color --config client-src/sockjs/webpack.config.js",
|
34 |
|
|
"build:client": "rimraf ./client/* && npm-run-all -s -l -p \"build:client:**\"",
|
35 |
|
|
"webpack-dev-server": "node examples/run-example.js",
|
36 |
|
|
"release": "standard-version"
|
37 |
|
|
},
|
38 |
|
|
"dependencies": {
|
39 |
|
|
"ansi-html": "0.0.7",
|
40 |
|
|
"bonjour": "^3.5.0",
|
41 |
|
|
"chokidar": "^2.1.8",
|
42 |
|
|
"compression": "^1.7.4",
|
43 |
|
|
"connect-history-api-fallback": "^1.6.0",
|
44 |
|
|
"debug": "^4.1.1",
|
45 |
|
|
"del": "^4.1.1",
|
46 |
|
|
"express": "^4.17.1",
|
47 |
|
|
"html-entities": "^1.2.1",
|
48 |
|
|
"http-proxy-middleware": "0.19.1",
|
49 |
|
|
"import-local": "^2.0.0",
|
50 |
|
|
"internal-ip": "^4.3.0",
|
51 |
|
|
"ip": "^1.1.5",
|
52 |
|
|
"is-absolute-url": "^3.0.3",
|
53 |
|
|
"killable": "^1.0.1",
|
54 |
|
|
"loglevel": "^1.6.6",
|
55 |
|
|
"opn": "^5.5.0",
|
56 |
|
|
"p-retry": "^3.0.1",
|
57 |
|
|
"portfinder": "^1.0.25",
|
58 |
|
|
"schema-utils": "^1.0.0",
|
59 |
|
|
"selfsigned": "^1.10.7",
|
60 |
|
|
"semver": "^6.3.0",
|
61 |
|
|
"serve-index": "^1.9.1",
|
62 |
|
|
"sockjs": "0.3.19",
|
63 |
|
|
"sockjs-client": "1.4.0",
|
64 |
|
|
"spdy": "^4.0.1",
|
65 |
|
|
"strip-ansi": "^3.0.1",
|
66 |
|
|
"supports-color": "^6.1.0",
|
67 |
|
|
"url": "^0.11.0",
|
68 |
|
|
"webpack-dev-middleware": "^3.7.2",
|
69 |
|
|
"webpack-log": "^2.0.0",
|
70 |
|
|
"ws": "^6.2.1",
|
71 |
|
|
"yargs": "12.0.5"
|
72 |
|
|
},
|
73 |
|
|
"devDependencies": {
|
74 |
|
|
"@babel/cli": "^7.8.4",
|
75 |
|
|
"@babel/core": "^7.8.4",
|
76 |
|
|
"@babel/plugin-transform-runtime": "^7.8.3",
|
77 |
|
|
"@babel/preset-env": "^7.8.4",
|
78 |
|
|
"@babel/runtime": "^7.8.4",
|
79 |
|
|
"@commitlint/cli": "^8.3.5",
|
80 |
|
|
"@commitlint/config-conventional": "^8.3.4",
|
81 |
|
|
"babel-loader": "^8.0.6",
|
82 |
|
|
"body-parser": "^1.19.0",
|
83 |
|
|
"commitlint-azure-pipelines-cli": "^1.0.3",
|
84 |
|
|
"copy-webpack-plugin": "^5.1.1",
|
85 |
|
|
"css-loader": "^2.1.1",
|
86 |
|
|
"eslint": "^6.8.0",
|
87 |
|
|
"eslint-config-prettier": "^6.10.0",
|
88 |
|
|
"eslint-config-webpack": "^1.2.5",
|
89 |
|
|
"eslint-plugin-import": "^2.20.1",
|
90 |
|
|
"execa": "^1.0.0",
|
91 |
|
|
"file-loader": "^5.0.2",
|
92 |
|
|
"html-loader": "^0.5.5",
|
93 |
|
|
"html-webpack-plugin": "^3.2.0",
|
94 |
|
|
"husky": "^3.1.0",
|
95 |
|
|
"jest": "^24.9.0",
|
96 |
|
|
"jest-junit": "^10.0.0",
|
97 |
|
|
"jquery": "^3.4.1",
|
98 |
|
|
"less": "^3.10.3",
|
99 |
|
|
"less-loader": "^5.0.0",
|
100 |
|
|
"lint-staged": "^10.0.7",
|
101 |
|
|
"marked": "^0.8.0",
|
102 |
|
|
"memfs": "^3.0.4",
|
103 |
|
|
"npm-run-all": "^4.1.5",
|
104 |
|
|
"prettier": "^1.19.1",
|
105 |
|
|
"puppeteer": "^1.20.0",
|
106 |
|
|
"rimraf": "^3.0.1",
|
107 |
|
|
"standard-version": "^7.1.0",
|
108 |
|
|
"style-loader": "^1.1.3",
|
109 |
|
|
"supertest": "^4.0.2",
|
110 |
|
|
"tcp-port-used": "^1.0.1",
|
111 |
|
|
"typescript": "^3.7.5",
|
112 |
|
|
"url-loader": "^3.0.0",
|
113 |
|
|
"webpack": "^4.41.5",
|
114 |
|
|
"webpack-cli": "^3.3.10"
|
115 |
|
|
},
|
116 |
|
|
"peerDependencies": {
|
117 |
|
|
"webpack": "^4.0.0 || ^5.0.0"
|
118 |
|
|
},
|
119 |
|
|
"peerDependenciesMeta": {
|
120 |
|
|
"webpack-cli": {
|
121 |
|
|
"optional": true
|
122 |
|
|
}
|
123 |
|
|
},
|
124 |
|
|
"author": "Tobias Koppers @sokra",
|
125 |
|
|
"bugs": "https://github.com/webpack/webpack-dev-server/issues",
|
126 |
|
|
"homepage": "https://github.com/webpack/webpack-dev-server#readme",
|
127 |
|
|
"repository": "https://github.com/webpack/webpack-dev-server.git",
|
128 |
|
|
"license": "MIT"
|
129 |
|
|
}
|