package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. "axios": "^0.24.0",
  14. "core-js": "^3.6.5",
  15. "dom-to-image": "^2.6.0",
  16. "echarts": "^5.2.1",
  17. "element-ui": "^2.15.6",
  18. "js-cookie": "^3.0.1",
  19. "keycloak-js": "^15.0.2",
  20. "mediainfo.js": "^0.1.7",
  21. "mqtt": "^4.2.8",
  22. "nprogress": "^0.2.0",
  23. "path-to-regexp": "^6.2.0",
  24. "spark-md5": "^3.0.2",
  25. "vue": "^2.6.11",
  26. "vue-router": "^3.2.0",
  27. "vuedraggable": "^2.24.3",
  28. "vuex": "^3.4.0"
  29. },
  30. "devDependencies": {
  31. "@vue/cli-plugin-babel": "~4.5.0",
  32. "@vue/cli-plugin-eslint": "~4.5.0",
  33. "@vue/cli-plugin-router": "~4.5.0",
  34. "@vue/cli-plugin-vuex": "~4.5.0",
  35. "@vue/cli-service": "~4.5.0",
  36. "babel-eslint": "^10.1.0",
  37. "chalk": "^4.0.0",
  38. "chokidar": "^3.5.2",
  39. "commitizen": "^4.2.4",
  40. "conventional-changelog-cli": "^2.1.1",
  41. "cz-conventional-changelog": "^3.3.0",
  42. "eslint": "^6.7.2",
  43. "eslint-plugin-vue": "^6.2.2",
  44. "express-http-proxy": "^1.6.3",
  45. "lint-staged": "^9.5.0",
  46. "mockjs": "^1.1.0",
  47. "sass": "^1.26.5",
  48. "sass-loader": "^8.0.2",
  49. "script-ext-html-webpack-plugin": "^2.1.5",
  50. "svg-sprite-loader": "^6.0.11",
  51. "vue-template-compiler": "^2.6.11",
  52. "webpack-bundle-analyzer": "^4.5.0"
  53. },
  54. "gitHooks": {
  55. "pre-commit": "lint-staged",
  56. "commit-msg": "node scripts/verify-commit-msg.js"
  57. },
  58. "lint-staged": {
  59. "*.{js,jsx,vue}": [
  60. "vue-cli-service lint",
  61. "git add"
  62. ]
  63. },
  64. "config": {
  65. "commitizen": {
  66. "path": "./node_modules/cz-conventional-changelog"
  67. }
  68. }
  69. }