package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "private": true,
  3. "name": "msr",
  4. "version": "1.0.0",
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "stage": "vue-cli-service build --mode staging",
  8. "build": "vue-cli-service build",
  9. "lint": "vue-cli-service lint",
  10. "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
  11. "commit": "cz"
  12. },
  13. "dependencies": {
  14. "app-info-parser": "^1.1.3",
  15. "axios": "^0.24.0",
  16. "core-js": "^3.6.5",
  17. "dom-to-image": "^2.6.0",
  18. "echarts": "^5.2.1",
  19. "element-ui": "^2.15.6",
  20. "hls.js": "^1.1.2",
  21. "keycloak-js": "^15.0.2",
  22. "mediainfo.js": "^0.1.7",
  23. "mqtt": "^4.2.8",
  24. "nprogress": "^0.2.0",
  25. "path-to-regexp": "^6.2.0",
  26. "spark-md5": "^3.0.2",
  27. "vue": "^2.6.11",
  28. "vue-router": "^3.2.0",
  29. "vuedraggable": "^2.24.3",
  30. "vuex": "^3.4.0"
  31. },
  32. "devDependencies": {
  33. "@vue/cli-plugin-babel": "~4.5.0",
  34. "@vue/cli-plugin-eslint": "~4.5.0",
  35. "@vue/cli-plugin-router": "~4.5.0",
  36. "@vue/cli-plugin-vuex": "~4.5.0",
  37. "@vue/cli-service": "~4.5.0",
  38. "babel-eslint": "^10.1.0",
  39. "chalk": "^4.0.0",
  40. "chokidar": "^3.5.2",
  41. "commitizen": "^4.2.4",
  42. "conventional-changelog-cli": "^2.1.1",
  43. "cz-conventional-changelog": "^3.3.0",
  44. "eslint": "^6.7.2",
  45. "eslint-plugin-vue": "^6.2.2",
  46. "express-http-proxy": "^1.6.3",
  47. "lint-staged": "^9.5.0",
  48. "mockjs": "^1.1.0",
  49. "sass": "^1.26.5",
  50. "sass-loader": "^8.0.2",
  51. "script-ext-html-webpack-plugin": "^2.1.5",
  52. "svg-sprite-loader": "^6.0.11",
  53. "vue-template-compiler": "^2.6.11"
  54. },
  55. "gitHooks": {
  56. "pre-commit": "lint-staged",
  57. "commit-msg": "node scripts/verify-commit-msg.js"
  58. },
  59. "lint-staged": {
  60. "*.{js,jsx,vue}": [
  61. "vue-cli-service lint",
  62. "git add"
  63. ]
  64. },
  65. "config": {
  66. "commitizen": {
  67. "path": "./node_modules/cz-conventional-changelog"
  68. }
  69. }
  70. }