package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. {
  2. "name": "vue3-element-admin",
  3. "version": "2.15.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "vue-tsc --noEmit & vite build",
  9. "preview": "vite preview",
  10. "build-only": "vite build",
  11. "type-check": "vue-tsc --noEmit",
  12. "lint:eslint": "eslint --fix --ext .ts,.js,.vue ./src ",
  13. "lint:prettier": "prettier --write \"**/*.{js,cjs,ts,json,tsx,css,less,scss,vue,html,md}\"",
  14. "lint:stylelint": "stylelint \"**/*.{css,scss,vue}\" --fix",
  15. "lint:lint-staged": "lint-staged",
  16. "preinstall": "npx only-allow pnpm",
  17. "prepare": "husky",
  18. "commit": "git-cz"
  19. },
  20. "config": {
  21. "commitizen": {
  22. "path": "node_modules/cz-git"
  23. }
  24. },
  25. "lint-staged": {
  26. "*.{js,ts}": [
  27. "eslint --fix",
  28. "prettier --write"
  29. ],
  30. "*.{cjs,json}": [
  31. "prettier --write"
  32. ],
  33. "*.{vue,html}": [
  34. "eslint --fix",
  35. "prettier --write",
  36. "stylelint --fix"
  37. ],
  38. "*.{scss,css}": [
  39. "stylelint --fix",
  40. "prettier --write"
  41. ],
  42. "*.md": [
  43. "prettier --write"
  44. ]
  45. },
  46. "dependencies": {
  47. "@element-plus/icons-vue": "^2.3.1",
  48. "@stomp/stompjs": "^7.0.0",
  49. "@vueuse/core": "^10.11.1",
  50. "@wangeditor/editor": "^5.1.23",
  51. "@wangeditor/editor-for-vue": "5.1.10",
  52. "animate.css": "^4.1.1",
  53. "axios": "^1.7.7",
  54. "codemirror": "^5.65.17",
  55. "codemirror-editor-vue3": "^2.7.1",
  56. "echarts": "^5.5.1",
  57. "element-plus": "^2.8.1",
  58. "exceljs": "^4.4.0",
  59. "lodash-es": "^4.17.21",
  60. "nprogress": "^0.2.0",
  61. "path-browserify": "^1.0.1",
  62. "path-to-regexp": "^6.2.2",
  63. "pinia": "^2.2.2",
  64. "qs": "^6.13.0",
  65. "sortablejs": "^1.15.3",
  66. "vue": "^3.5.1",
  67. "vue-i18n": "9.9.1",
  68. "vue-router": "^4.4.3"
  69. },
  70. "devDependencies": {
  71. "@commitlint/cli": "^18.6.1",
  72. "@commitlint/config-conventional": "^18.6.3",
  73. "@iconify-json/ep": "^1.2.0",
  74. "@types/codemirror": "^5.60.15",
  75. "@types/lodash": "^4.17.7",
  76. "@types/node": "^20.16.5",
  77. "@types/nprogress": "^0.2.3",
  78. "@types/path-browserify": "^1.0.3",
  79. "@types/qs": "^6.9.15",
  80. "@types/sortablejs": "^1.15.8",
  81. "@typescript-eslint/eslint-plugin": "^7.18.0",
  82. "@typescript-eslint/parser": "^7.18.0",
  83. "@vitejs/plugin-vue": "^5.1.3",
  84. "@vitejs/plugin-vue-jsx": "^3.1.0",
  85. "autoprefixer": "^10.4.20",
  86. "commitizen": "^4.3.0",
  87. "cz-git": "^1.9.4",
  88. "eslint": "^8.57.0",
  89. "eslint-config-prettier": "^9.1.0",
  90. "eslint-plugin-import": "^2.30.0",
  91. "eslint-plugin-prettier": "^5.2.1",
  92. "eslint-plugin-vue": "^9.28.0",
  93. "fast-glob": "^3.3.2",
  94. "husky": "^9.1.5",
  95. "lint-staged": "^15.2.10",
  96. "postcss": "^8.4.45",
  97. "postcss-html": "^1.7.0",
  98. "postcss-scss": "^4.0.9",
  99. "prettier": "^3.3.3",
  100. "sass": "^1.78.0",
  101. "stylelint": "^16.9.0",
  102. "stylelint-config-html": "^1.1.0",
  103. "stylelint-config-recess-order": "^4.6.0",
  104. "stylelint-config-recommended-scss": "^14.1.0",
  105. "stylelint-config-recommended-vue": "^1.5.0",
  106. "stylelint-config-standard": "^36.0.1",
  107. "terser": "^5.31.6",
  108. "typescript": "^5.5.4",
  109. "unocss": "^0.58.9",
  110. "unplugin-auto-import": "^0.17.8",
  111. "unplugin-icons": "^0.18.5",
  112. "unplugin-vue-components": "^0.26.0",
  113. "vite": "^5.4.3",
  114. "vite-plugin-mock-dev-server": "^1.7.1",
  115. "vite-plugin-svg-icons": "^2.0.1",
  116. "vite-plugin-vue-devtools": "^7.4.4",
  117. "vue-tsc": "^2.1.6"
  118. },
  119. "engines": {
  120. "node": ">=18.0.0"
  121. },
  122. "repository": "https://gitee.com/youlaiorg/vue3-element-admin.git",
  123. "author": "有来开源组织",
  124. "license": "MIT"
  125. }