package.json 1.8 KB

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