package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "name": "webpack-dev-server",
  3. "version": "2.11.5",
  4. "description": "Serves a webpack app. Updates the browser on changes.",
  5. "license": "MIT",
  6. "repository": "webpack/webpack-dev-server",
  7. "author": "Tobias Koppers @sokra",
  8. "homepage": "https://github.com/webpack/webpack-dev-server",
  9. "maintainers": [
  10. {
  11. "name": "Andrew Powell",
  12. "email": "andrew@shellscape.org",
  13. "url": "shellscape.org"
  14. }
  15. ],
  16. "main": "lib/Server.js",
  17. "bin": "bin/webpack-dev-server.js",
  18. "engines": {
  19. "node": ">=4.7"
  20. },
  21. "scripts": {
  22. "beautify": "npm run lint -- --fix",
  23. "ci": "npm run cover -- --report lcovonly && npm run test",
  24. "cover": "istanbul cover node_modules/mocha/bin/_mocha",
  25. "lint": "eslint bin lib test examples client-src",
  26. "mocha": "mocha --full-trace --check-leaks",
  27. "prepublish": "(rm ssl/*.pem || true) && npm run -s transpile:index && npm run -s build:live && npm run -s build:index && npm run -s build:sockjs",
  28. "test": "npm run lint && npm run mocha",
  29. "transpile:index": "babel client-src/default --out-dir client --ignore *.config.js",
  30. "build:index": "webpack ./client-src/default/index.js client/index.bundle.js --color --config client-src/default/webpack.config.js",
  31. "build:live": "webpack ./client-src/live/index.js client/live.bundle.js --color --config client-src/live/webpack.config.js",
  32. "build:sockjs": "webpack ./client-src/sockjs/index.js client/sockjs.bundle.js --color --config client-src/sockjs/webpack.config.js",
  33. "webpack-dev-server": "cd $INIT_CWD && node ../../../bin/webpack-dev-server.js"
  34. },
  35. "files": [
  36. "lib/",
  37. "bin",
  38. "client/",
  39. "ssl/"
  40. ],
  41. "peerDependencies": {
  42. "webpack": "^2.2.0 || ^3.0.0"
  43. },
  44. "dependencies": {
  45. "ansi-html": "0.0.7",
  46. "array-includes": "^3.0.3",
  47. "bonjour": "^3.5.0",
  48. "chokidar": "^2.1.2",
  49. "compression": "^1.7.3",
  50. "connect-history-api-fallback": "^1.3.0",
  51. "debug": "^3.1.0",
  52. "del": "^3.0.0",
  53. "express": "^4.16.2",
  54. "html-entities": "^1.2.0",
  55. "http-proxy-middleware": "^0.19.1",
  56. "import-local": "^1.0.0",
  57. "internal-ip": "1.2.0",
  58. "ip": "^1.1.5",
  59. "killable": "^1.0.0",
  60. "loglevel": "^1.4.1",
  61. "opn": "^5.1.0",
  62. "portfinder": "^1.0.9",
  63. "selfsigned": "^1.9.1",
  64. "serve-index": "^1.9.1",
  65. "sockjs": "0.3.19",
  66. "sockjs-client": "1.1.5",
  67. "spdy": "^4.0.0",
  68. "strip-ansi": "^3.0.0",
  69. "supports-color": "^5.1.0",
  70. "webpack-dev-middleware": "1.12.2",
  71. "yargs": "6.6.0"
  72. },
  73. "devDependencies": {
  74. "babel-cli": "^6.26.0",
  75. "babel-core": "^6.26.3",
  76. "babel-loader": "^7.1.2",
  77. "babel-preset-env": "^1.7.0",
  78. "codecov.io": "^0.1.6",
  79. "copy-webpack-plugin": "^4.3.1",
  80. "css-loader": "^0.28.5",
  81. "eslint": "^4.5.0",
  82. "eslint-config-webpack": "^1.2.5",
  83. "eslint-plugin-import": "^2.7.0",
  84. "execa": "^0.8.0",
  85. "file-loader": "^1.1.6",
  86. "html-webpack-plugin": "^2.30.1",
  87. "istanbul": "^0.4.5",
  88. "jquery": "^3.2.1",
  89. "less": "^2.5.1",
  90. "less-loader": "^4.0.5",
  91. "marked": "^0.3.9",
  92. "mocha": "^3.5.3",
  93. "mocha-sinon": "^2.0.0",
  94. "pug": "^2.0.3",
  95. "pug-loader": "^2.3.0",
  96. "semver": "^5.4.1",
  97. "should": "^13.2.0",
  98. "sinon": "^4.1.3",
  99. "style-loader": "^0.19.1",
  100. "supertest": "^3.0.0",
  101. "uglifyjs-webpack-plugin": "^1.0.0-beta.2",
  102. "url-loader": "^0.6.2",
  103. "webpack": "^3.10.0",
  104. "ws": "^4.0.0"
  105. }
  106. }