package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. "flv.js": "^1.6.2",
  21. "hls.js": "^1.1.2",
  22. "keycloak-js": "^15.0.2",
  23. "mediainfo.js": "^0.1.7",
  24. "mqtt": "^4.2.8",
  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. "cz-conventional-changelog": "^3.3.0",
  46. "eslint": "^8.17.0",
  47. "eslint-plugin-vue": "^8.0.3",
  48. "express-http-proxy": "^1.6.3",
  49. "lint-staged": "^9.5.0",
  50. "mockjs": "^1.1.0",
  51. "sass": "^1.26.5",
  52. "sass-loader": "^8.0.2",
  53. "script-ext-html-webpack-plugin": "^2.1.5",
  54. "svg-sprite-loader": "^6.0.11",
  55. "vue-template-compiler": "^2.6.11",
  56. "yorkie": "^2.0.0"
  57. },
  58. "gitHooks": {
  59. "pre-commit": "lint-staged",
  60. "commit-msg": "commitlint --env GIT_PARAMS"
  61. },
  62. "lint-staged": {
  63. "*.{js,jsx,vue}": [
  64. "eslint --ext .js,.vue --fix",
  65. "git add"
  66. ]
  67. },
  68. "config": {
  69. "commitizen": {
  70. "path": "./node_modules/cz-conventional-changelog"
  71. }
  72. }
  73. }