package.json 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. {
  2. "name": "生产线综合管控采集平台",
  3. "version": "1.0.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "preinstall": "npx only-allow pnpm",
  8. "dev": "vite serve --mode development",
  9. "build": "vite build --mode production",
  10. "build:test": "vite build --mode test",
  11. "lint:eslint": "eslint --fix --ext .ts,.js,.vue ./src ",
  12. "lint:prettier": "prettier --write \"**/*.{js,cjs,ts,json,tsx,css,less,scss,vue,html,md}\"",
  13. "lint:stylelint": "stylelint \"**/*.{css,scss,vue}\" --fix",
  14. "lint:lint-staged": "lint-staged",
  15. "commit": "git-cz"
  16. },
  17. "config": {
  18. "commitizen": {
  19. "path": "node_modules/cz-git"
  20. }
  21. },
  22. "lint-staged": {
  23. "*.{js,ts}": [
  24. "eslint --fix",
  25. "prettier --write"
  26. ],
  27. "*.{cjs,json}": [
  28. "prettier --write"
  29. ],
  30. "*.{vue,html}": [
  31. "eslint --fix",
  32. "prettier --write",
  33. "stylelint --fix"
  34. ],
  35. "*.{scss,css}": [
  36. "stylelint --fix",
  37. "prettier --write"
  38. ],
  39. "*.md": [
  40. "prettier --write"
  41. ]
  42. },
  43. "dependencies": {
  44. "@element-plus/icons-vue": "^2.3.1",
  45. "@kjgl77/datav-vue3": "^1.7.4",
  46. "@smallwei/avue": "^3.6.2",
  47. "@stomp/stompjs": "^7.0.0",
  48. "@vitejs/plugin-legacy": "^6.0.0",
  49. "@vitejs/plugin-vue-jsx": "^4.1.1",
  50. "@vue/runtime-core": "^3.5.13",
  51. "@vueup/vue-quill": "^1.2.0",
  52. "@vueuse/core": "^10.11.1",
  53. "@wangeditor/editor": "^5.1.23",
  54. "@wangeditor/editor-for-vue": "5.1.10",
  55. "animate.css": "^4.1.1",
  56. "axios": "^1.7.9",
  57. "big.js": "^6.2.2",
  58. "codemirror": "^5.65.18",
  59. "codemirror-editor-vue3": "^2.8.0",
  60. "dayjs": "^1.11.13",
  61. "dhtmlx-gantt": "^9.0.3",
  62. "echarts": "^5.5.1",
  63. "element-plus": "^2.9.1",
  64. "eslint-plugin-import": "^2.31.0",
  65. "exceljs": "^4.4.0",
  66. "file-saver": "^2.0.5",
  67. "html2canvas": "^1.4.1",
  68. "jspdf": "^2.5.2",
  69. "less": "^4.2.1",
  70. "lodash-es": "^4.17.21",
  71. "luckyexcel": "^1.0.1",
  72. "mitt": "^3.0.1",
  73. "moment": "^2.30.1",
  74. "nanoid": "^5.0.9",
  75. "net": "^1.0.2",
  76. "nprogress": "^0.2.0",
  77. "path-browserify": "^1.0.1",
  78. "path-to-regexp": "^6.3.0",
  79. "pinia": "^2.3.0",
  80. "pinia-plugin-persist": "^1.0.0",
  81. "pinia-plugin-persistedstate": "^4.2.0",
  82. "print-js": "^1.6.0",
  83. "qs": "^6.13.1",
  84. "sockjs-client": "^1.6.1",
  85. "sortablejs": "^1.15.6",
  86. "stompjs": "^2.3.3",
  87. "three": "^0.171.0",
  88. "unplugin-element-plus": "^0.8.0",
  89. "unplugin-icons": "^0.22.0",
  90. "uuid": "^11.0.3",
  91. "vue": "^3.5.13",
  92. "vue-draggable-plus": "^0.6.0",
  93. "vue-i18n": "9.9.1",
  94. "vue-pdf-embed": "2.0.2",
  95. "vue-qrcode": "^2.2.2",
  96. "vue-router": "^4.5.0",
  97. "vue3-pdfjs": "^0.1.6",
  98. "vue3-print-nb": "^0.1.4",
  99. "x-data-spreadsheet": "^1.1.9",
  100. "xlsx": "^0.18.5"
  101. },
  102. "devDependencies": {
  103. "@commitlint/cli": "^19.6.1",
  104. "@commitlint/config-conventional": "^19.6.0",
  105. "@eslint/js": "^9.17.0",
  106. "@iconify-json/ep": "^1.2.2",
  107. "@types/codemirror": "^5.60.15",
  108. "@types/lodash": "^4.17.13",
  109. "@types/node": "^22.10.2",
  110. "@types/nprogress": "^0.2.3",
  111. "@types/path-browserify": "^1.0.3",
  112. "@types/qs": "^6.9.17",
  113. "@types/sortablejs": "^1.15.8",
  114. "@typescript-eslint/eslint-plugin": "^8.18.2",
  115. "@typescript-eslint/parser": "^8.18.2",
  116. "@vitejs/plugin-vue": "^5.2.1",
  117. "autoprefixer": "^10.4.20",
  118. "commitizen": "^4.3.1",
  119. "cz-git": "1.9.4",
  120. "eslint": "^9.17.0",
  121. "eslint-config-prettier": "^9.1.0",
  122. "eslint-plugin-prettier": "^5.2.1",
  123. "eslint-plugin-vue": "^9.32.0",
  124. "fast-glob": "^3.3.2",
  125. "globals": "^15.14.0",
  126. "husky": "^9.1.7",
  127. "lint-staged": "^15.2.11",
  128. "postcss": "^8.4.49",
  129. "postcss-html": "^1.7.0",
  130. "postcss-scss": "^4.0.9",
  131. "prettier": "^3.4.2",
  132. "sass": "^1.83.0",
  133. "stylelint": "^16.12.0",
  134. "stylelint-config-html": "^1.1.0",
  135. "stylelint-config-recess-order": "^5.1.1",
  136. "stylelint-config-recommended-scss": "^14.1.0",
  137. "stylelint-config-recommended-vue": "^1.5.0",
  138. "stylelint-config-standard": "^36.0.1",
  139. "terser": "^5.37.0",
  140. "typescript": "5.5.4",
  141. "typescript-eslint": "^8.18.2",
  142. "unocss": "0.65.1",
  143. "unplugin-auto-import": "^0.18.6",
  144. "unplugin-vue-components": "^0.27.5",
  145. "vite": "^6.0.5",
  146. "vite-plugin-mock-dev-server": "^1.8.3",
  147. "vite-plugin-svg-icons": "^2.0.1",
  148. "vue-eslint-parser": "^9.4.3",
  149. "vue-tsc": "^2.2.0"
  150. },
  151. "repository": "https://gitee.com/youlaiorg/vue3-element-admin.git",
  152. "author": "有来开源组织",
  153. "license": "MIT",
  154. "engines": {
  155. "node": ">=18.0.0"
  156. }
  157. }