package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "private": true,
  3. "name": "msr",
  4. "version": "1.0.0",
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "vue-cli-service build",
  8. "lint": "eslint . --ext .js,.vue",
  9. "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
  10. "commit": "cz"
  11. },
  12. "dependencies": {
  13. "@amap/amap-jsapi-loader": "^1.0.1",
  14. "@wangeditor/editor": "^5.1.20",
  15. "@wangeditor/editor-for-vue": "^1.0.2",
  16. "app-info-parser": "^1.1.3",
  17. "axios": "^0.24.0",
  18. "core-js": "^3.6.5",
  19. "crypto-js": "^4.1.1",
  20. "dom-to-image": "^2.6.0",
  21. "echarts": "^5.4.3",
  22. "element-ui": "^2.15.6",
  23. "hls.js": "^1.1.2",
  24. "keycloak-js": "^15.0.2",
  25. "maplibre-gl": "2.4.0",
  26. "md5": "^2.3.0",
  27. "mediainfo.js": "^0.1.7",
  28. "mpegts.js": "^1.6.10",
  29. "mqtt": "^4.3.7",
  30. "nprogress": "^0.2.0",
  31. "path-to-regexp": "^6.2.0",
  32. "spark-md5": "^3.0.2",
  33. "vue": "^2.6.11",
  34. "vue-i18n": "^8.28.2",
  35. "vue-router": "^3.2.0",
  36. "vue-seamless-scroll": "^1.1.23",
  37. "vuedraggable": "^2.24.3",
  38. "vuex": "^3.4.0"
  39. },
  40. "devDependencies": {
  41. "@babel/core": "^7.18.2",
  42. "@babel/eslint-parser": "^7.18.2",
  43. "@commitlint/cli": "^16.2.3",
  44. "@commitlint/config-conventional": "^16.2.1",
  45. "@vue/cli-plugin-babel": "~4.5.0",
  46. "@vue/cli-plugin-router": "~4.5.0",
  47. "@vue/cli-plugin-vuex": "~4.5.0",
  48. "@vue/cli-service": "~4.5.0",
  49. "chokidar": "^3.5.2",
  50. "commitizen": "^4.2.4",
  51. "conventional-changelog-cli": "^2.1.1",
  52. "cz-conventional-changelog": "^3.3.0",
  53. "eslint": "^8.17.0",
  54. "eslint-plugin-vue": "^8.0.3",
  55. "express-http-proxy": "^1.6.3",
  56. "lint-staged": "^9.5.0",
  57. "mockjs": "^1.1.0",
  58. "sass": "^1.56.1",
  59. "sass-loader": "^8.0.2",
  60. "script-ext-html-webpack-plugin": "^2.1.5",
  61. "svg-sprite-loader": "^6.0.11",
  62. "vue-template-compiler": "^2.6.11",
  63. "yorkie": "^2.0.0"
  64. },
  65. "gitHooks": {
  66. "pre-commit": "lint-staged",
  67. "commit-msg": "commitlint --env GIT_PARAMS"
  68. },
  69. "lint-staged": {
  70. "*.{js,jsx,vue}": [
  71. "eslint --ext .js,.vue --fix",
  72. "git add"
  73. ]
  74. },
  75. "config": {
  76. "commitizen": {
  77. "path": "./node_modules/cz-conventional-changelog"
  78. }
  79. }
  80. }