package.json 2.0 KB

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