package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. "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.3.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. "mpegts.js": "^1.6.10",
  24. "mqtt": "^4.3.7",
  25. "nprogress": "^0.2.0",
  26. "path-to-regexp": "^6.2.0",
  27. "spark-md5": "^3.0.2",
  28. "vue": "^2.6.11",
  29. "vue-router": "^3.2.0",
  30. "vuedraggable": "^2.24.3",
  31. "vuex": "^3.4.0"
  32. },
  33. "devDependencies": {
  34. "@babel/core": "^7.18.2",
  35. "@babel/eslint-parser": "^7.18.2",
  36. "@commitlint/cli": "^16.2.3",
  37. "@commitlint/config-conventional": "^16.2.1",
  38. "@vue/cli-plugin-babel": "~4.5.0",
  39. "@vue/cli-plugin-router": "~4.5.0",
  40. "@vue/cli-plugin-vuex": "~4.5.0",
  41. "@vue/cli-service": "~4.5.0",
  42. "chokidar": "^3.5.2",
  43. "commitizen": "^4.2.4",
  44. "conventional-changelog-cli": "^2.1.1",
  45. "crypto-js": "^4.1.1",
  46. "cz-conventional-changelog": "^3.3.0",
  47. "eslint": "^8.17.0",
  48. "eslint-plugin-vue": "^8.0.3",
  49. "express-http-proxy": "^1.6.3",
  50. "lint-staged": "^9.5.0",
  51. "mockjs": "^1.1.0",
  52. "sass": "^1.26.5",
  53. "sass-loader": "^8.0.2",
  54. "script-ext-html-webpack-plugin": "^2.1.5",
  55. "svg-sprite-loader": "^6.0.11",
  56. "vue-template-compiler": "^2.6.11",
  57. "yorkie": "^2.0.0"
  58. },
  59. "gitHooks": {
  60. "pre-commit": "lint-staged",
  61. "commit-msg": "commitlint --env GIT_PARAMS"
  62. },
  63. "lint-staged": {
  64. "*.{js,jsx,vue}": [
  65. "eslint --ext .js,.vue --fix",
  66. "git add"
  67. ]
  68. },
  69. "config": {
  70. "commitizen": {
  71. "path": "./node_modules/cz-conventional-changelog"
  72. }
  73. }
  74. }