web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
4.2 KiB

  1. {
  2. "name": "webpack-dev-server",
  3. "version": "3.11.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. "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.3.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.8",
  55. "opn": "^5.5.0",
  56. "p-retry": "^3.0.1",
  57. "portfinder": "^1.0.26",
  58. "schema-utils": "^1.0.0",
  59. "selfsigned": "^1.10.8",
  60. "semver": "^6.3.0",
  61. "serve-index": "^1.9.1",
  62. "sockjs": "^0.3.21",
  63. "sockjs-client": "^1.5.0",
  64. "spdy": "^4.0.2",
  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": "^13.3.2"
  72. },
  73. "devDependencies": {
  74. "@babel/cli": "^7.8.4",
  75. "@babel/core": "^7.9.6",
  76. "@babel/plugin-transform-runtime": "^7.9.6",
  77. "@babel/preset-env": "^7.9.6",
  78. "@babel/runtime": "^7.9.6",
  79. "@commitlint/cli": "^8.3.5",
  80. "@commitlint/config-conventional": "^8.3.4",
  81. "babel-loader": "^8.1.0",
  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.11.0",
  88. "eslint-config-webpack": "^1.2.5",
  89. "eslint-plugin-import": "^2.20.2",
  90. "execa": "^1.0.0",
  91. "file-loader": "^5.1.0",
  92. "html-loader": "^0.5.5",
  93. "html-webpack-plugin": "^3.2.0",
  94. "husky": "^4.2.5",
  95. "jest": "^24.9.0",
  96. "jest-junit": "^10.0.0",
  97. "jquery": "^3.5.1",
  98. "less": "^3.11.1",
  99. "less-loader": "^5.0.0",
  100. "lint-staged": "^10.2.2",
  101. "marked": "^0.8.2",
  102. "memfs": "^3.1.2",
  103. "npm-run-all": "^4.1.5",
  104. "prettier": "^1.19.1",
  105. "puppeteer": "^1.20.0",
  106. "rimraf": "^3.0.2",
  107. "standard-version": "^8.0.0",
  108. "style-loader": "^1.2.1",
  109. "supertest": "^4.0.2",
  110. "tcp-port-used": "^1.0.1",
  111. "typescript": "^3.8.3",
  112. "url-loader": "^3.0.0",
  113. "webpack": "^4.43.0",
  114. "webpack-cli": "^3.3.11"
  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. }