UNPKG

3.9 kBJSONView Raw
1{
2 "name": "webpack-dev-server",
3 "version": "3.6.0",
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 "commitlint": "commitlint --from=master",
21 "security": "npm audit",
22 "test:only": "jest --runInBand",
23 "test:coverage": "npm run test:only -- --coverage",
24 "test:watch": "npm run test:coverage --watch",
25 "test": "npm run test:coverage",
26 "pretest": "npm run lint",
27 "prepare": "rimraf ./ssl/*.pem && npm run -s transpile:index && npm run -s build:live && npm run -s build:index && npm run -s build:sockjs",
28 "transpile:index": "babel client-src/default --out-dir client --ignore \"./client-src/default/*.config.js\"",
29 "build:index": "webpack ./client-src/default/index.js -o client/index.bundle.js --color --config client-src/default/webpack.config.js",
30 "build:live": "webpack ./client-src/live/index.js -o client/live.bundle.js --color --config client-src/live/webpack.config.js",
31 "build:sockjs": "webpack ./client-src/sockjs/index.js -o client/sockjs.bundle.js --color --config client-src/sockjs/webpack.config.js",
32 "webpack-dev-server": "cd $INIT_CWD && node ../../../bin/webpack-dev-server.js",
33 "release": "standard-version"
34 },
35 "dependencies": {
36 "ansi-html": "0.0.7",
37 "bonjour": "^3.5.0",
38 "chokidar": "^2.1.6",
39 "compression": "^1.7.4",
40 "connect-history-api-fallback": "^1.6.0",
41 "debug": "^4.1.1",
42 "del": "^4.1.1",
43 "express": "^4.17.1",
44 "html-entities": "^1.2.1",
45 "http-proxy-middleware": "^0.19.1",
46 "import-local": "^2.0.0",
47 "internal-ip": "^4.3.0",
48 "ip": "^1.1.5",
49 "killable": "^1.0.1",
50 "loglevel": "^1.6.2",
51 "opn": "^5.5.0",
52 "portfinder": "^1.0.20",
53 "schema-utils": "^1.0.0",
54 "selfsigned": "^1.10.4",
55 "semver": "^6.1.1",
56 "serve-index": "^1.9.1",
57 "sockjs": "0.3.19",
58 "sockjs-client": "1.3.0",
59 "spdy": "^4.0.0",
60 "strip-ansi": "^3.0.1",
61 "supports-color": "^6.1.0",
62 "url": "^0.11.0",
63 "webpack-dev-middleware": "^3.7.0",
64 "webpack-log": "^2.0.0",
65 "yargs": "12.0.5"
66 },
67 "devDependencies": {
68 "@babel/cli": "^7.4.4",
69 "@babel/core": "^7.4.5",
70 "@babel/preset-env": "^7.4.5",
71 "@commitlint/cli": "^7.6.1",
72 "@commitlint/config-conventional": "^7.6.0",
73 "babel-loader": "^8.0.6",
74 "body-parser": "^1.19.0",
75 "commitlint-azure-pipelines-cli": "^1.0.2",
76 "copy-webpack-plugin": "^5.0.3",
77 "css-loader": "^2.1.1",
78 "eslint": "^5.16.0",
79 "eslint-config-prettier": "^4.3.0",
80 "eslint-config-webpack": "^1.2.5",
81 "eslint-plugin-import": "^2.17.3",
82 "execa": "^1.0.0",
83 "file-loader": "^3.0.1",
84 "html-loader": "^0.5.5",
85 "html-webpack-plugin": "^3.2.0",
86 "husky": "^2.3.0",
87 "jest": "^24.8.0",
88 "jest-junit": "^6.4.0",
89 "jquery": "^3.4.1",
90 "less": "^3.9.0",
91 "less-loader": "^5.0.0",
92 "lint-staged": "^8.1.7",
93 "marked": "^0.6.2",
94 "memfs": "^2.15.4",
95 "npm-run-all": "^4.1.5",
96 "prettier": "^1.17.1",
97 "puppeteer": "^1.17.0",
98 "rimraf": "^2.6.3",
99 "standard-version": "^6.0.1",
100 "style-loader": "^0.23.1",
101 "supertest": "^4.0.2",
102 "url-loader": "^1.1.2",
103 "webpack": "^4.33.0",
104 "webpack-cli": "^3.3.2",
105 "ws": "^6.2.1"
106 },
107 "peerDependencies": {
108 "webpack": "^4.0.0"
109 },
110 "author": "Tobias Koppers @sokra",
111 "bugs": "https://github.com/webpack/webpack-dev-server/issues",
112 "homepage": "https://github.com/webpack/webpack-dev-server#readme",
113 "repository": "https://github.com/webpack/webpack-dev-server.git",
114 "license": "MIT"
115}