package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "private": true,
  3. "name": "smb_management",
  4. "version": "0.0.0",
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "vue-cli-service build",
  8. "lint": "vue-cli-service lint",
  9. "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
  10. "commit": "cz"
  11. },
  12. "dependencies": {
  13. "app-info-parser": "^1.1.3",
  14. "axios": "^0.24.0",
  15. "core-js": "^3.6.5",
  16. "dom-to-image": "^2.6.0",
  17. "echarts": "^5.2.1",
  18. "element-ui": "^2.15.6",
  19. "hls.js": "^1.1.2",
  20. "js-cookie": "^3.0.1",
  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. "webpack-bundle-analyzer": "^4.5.0"
  55. },
  56. "gitHooks": {
  57. "pre-commit": "lint-staged",
  58. "commit-msg": "node scripts/verify-commit-msg.js"
  59. },
  60. "lint-staged": {
  61. "*.{js,jsx,vue}": [
  62. "vue-cli-service lint",
  63. "git add"
  64. ]
  65. },
  66. "config": {
  67. "commitizen": {
  68. "path": "./node_modules/cz-conventional-changelog"
  69. }
  70. }
  71. }