package.json 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. {
  2. "name": "pure-admin-thin",
  3. "version": "5.3.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "NODE_OPTIONS=--max-old-space-size=4096 vite",
  8. "serve": "pnpm dev",
  9. "build": "rimraf dist && NODE_OPTIONS=--max-old-space-size=8192 vite build",
  10. "build:dev": "rimraf dist && NODE_OPTIONS=--max-old-space-size=8192 vite build --mode development",
  11. "build:pro": "rimraf dist && NODE_OPTIONS=--max-old-space-size=8192 vite build --mode production",
  12. "build:staging": "rimraf dist && vite build --mode staging",
  13. "report": "rimraf dist && vite build",
  14. "preview": "vite preview",
  15. "preview:build": "pnpm build && vite preview",
  16. "typecheck": "tsc --noEmit && vue-tsc --noEmit --skipLibCheck",
  17. "svgo": "svgo -f . -r",
  18. "cloc": "NODE_OPTIONS=--max-old-space-size=4096 cloc . --exclude-dir=node_modules --exclude-lang=YAML",
  19. "clean:cache": "rimraf .eslintcache && rimraf pnpm-lock.yaml && rimraf node_modules && pnpm store prune && pnpm install",
  20. "lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock,build}/**/*.{vue,js,ts,tsx}\" --fix",
  21. "lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,scss,vue,html,md}\"",
  22. "lint:stylelint": "stylelint --cache --fix \"**/*.{html,vue,css,scss}\" --cache-location node_modules/.cache/stylelint/",
  23. "lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint",
  24. "prepare": "husky",
  25. "preinstall": "npx only-allow pnpm"
  26. },
  27. "keywords": [
  28. "vue-pure-admin",
  29. "element-plus",
  30. "tailwindcss",
  31. "pure-admin",
  32. "typescript",
  33. "pinia",
  34. "vue3",
  35. "vite",
  36. "esm"
  37. ],
  38. "homepage": "https://github.com/pure-admin/pure-admin-thin",
  39. "repository": {
  40. "type": "git",
  41. "url": "git+https://github.com/pure-admin/pure-admin-thin.git"
  42. },
  43. "bugs": {
  44. "url": "https://github.com/pure-admin/pure-admin-thin/issues"
  45. },
  46. "license": "MIT",
  47. "author": {
  48. "name": "xiaoxian521",
  49. "email": "pureadmin@163.com",
  50. "url": "https://github.com/xiaoxian521"
  51. },
  52. "dependencies": {
  53. "@element-plus/icons-vue": "^2.3.1",
  54. "@pureadmin/descriptions": "^1.2.1",
  55. "@pureadmin/table": "^3.1.2",
  56. "@pureadmin/utils": "^2.4.7",
  57. "@vueuse/core": "^10.9.0",
  58. "@vueuse/motion": "^2.1.0",
  59. "animate.css": "^4.1.1",
  60. "axios": "^1.6.8",
  61. "dayjs": "^1.11.10",
  62. "decimal.js": "^10.4.3",
  63. "default-passive-events": "^2.0.0",
  64. "echarts": "^5.5.0",
  65. "element-plus": "^2.6.2",
  66. "exceljs": "^4.4.0",
  67. "js-cookie": "^3.0.5",
  68. "jsencrypt": "^3.3.2",
  69. "localforage": "^1.10.0",
  70. "mitt": "^3.0.1",
  71. "nprogress": "^0.2.0",
  72. "path": "^0.12.7",
  73. "pinia": "^2.1.7",
  74. "pinyin-pro": "^3.19.6",
  75. "qs": "^6.12.0",
  76. "responsive-storage": "^2.2.0",
  77. "sortablejs": "^1.15.2",
  78. "vue": "^3.4.21",
  79. "vue-draggable-plus": "^0.5.4",
  80. "vue-router": "^4.3.0",
  81. "vue-tippy": "^6.4.1",
  82. "vue-types": "^5.1.1",
  83. "vxe-table": "^4.6.25",
  84. "vxe-table-plugin-export-xlsx": "^4.0.7",
  85. "xlsx": "^0.18.5"
  86. },
  87. "devDependencies": {
  88. "@commitlint/cli": "^19.2.1",
  89. "@commitlint/config-conventional": "^19.1.0",
  90. "@commitlint/types": "^19.0.3",
  91. "@eslint/js": "^8.57.0",
  92. "@faker-js/faker": "^8.4.1",
  93. "@iconify-icons/ep": "^1.2.12",
  94. "@iconify-icons/ri": "^1.2.10",
  95. "@iconify/vue": "^4.1.1",
  96. "@pureadmin/theme": "^3.2.0",
  97. "@types/gradient-string": "^1.1.5",
  98. "@types/js-cookie": "^3.0.6",
  99. "@types/node": "^20.11.30",
  100. "@types/nprogress": "^0.2.3",
  101. "@types/qs": "^6.9.14",
  102. "@types/sortablejs": "^1.15.8",
  103. "@typescript-eslint/eslint-plugin": "^7.4.0",
  104. "@typescript-eslint/parser": "^7.4.0",
  105. "@vitejs/plugin-vue": "^5.0.4",
  106. "@vitejs/plugin-vue-jsx": "^3.1.0",
  107. "autoprefixer": "^10.4.19",
  108. "boxen": "^7.1.1",
  109. "cloc": "^2.11.0",
  110. "cssnano": "^6.1.2",
  111. "eslint": "^8.57.0",
  112. "eslint-config-prettier": "^9.1.0",
  113. "eslint-define-config": "^2.1.0",
  114. "eslint-plugin-prettier": "^5.1.3",
  115. "eslint-plugin-vue": "^9.24.0",
  116. "gradient-string": "^2.0.2",
  117. "husky": "^9.0.11",
  118. "lint-staged": "^15.2.2",
  119. "postcss": "^8.4.38",
  120. "postcss-html": "^1.6.0",
  121. "postcss-import": "^16.1.0",
  122. "postcss-scss": "^4.0.9",
  123. "prettier": "^3.2.5",
  124. "rimraf": "^5.0.5",
  125. "rollup-plugin-visualizer": "^5.12.0",
  126. "sass": "^1.72.0",
  127. "stylelint": "^16.3.1",
  128. "stylelint-config-recess-order": "^5.0.0",
  129. "stylelint-config-recommended-vue": "^1.5.0",
  130. "stylelint-config-standard-scss": "^13.0.0",
  131. "stylelint-prettier": "^5.0.0",
  132. "svgo": "^3.2.0",
  133. "tailwindcss": "^3.4.3",
  134. "typescript": "^5.4.3",
  135. "vite": "^5.2.6",
  136. "vite-plugin-cdn-import": "^0.3.5",
  137. "vite-plugin-compression": "^0.5.1",
  138. "vite-plugin-fake-server": "^2.1.1",
  139. "vite-plugin-remove-console": "^2.2.0",
  140. "vite-plugin-router-warn": "^1.0.0",
  141. "vite-svg-loader": "^5.1.0",
  142. "vue-eslint-parser": "^9.4.2",
  143. "vue-tsc": "^1.8.27"
  144. },
  145. "engines": {
  146. "node": "^18.18.0 || ^20.9.0 || >=21.1.0",
  147. "pnpm": ">=8.6.10"
  148. },
  149. "packageManager": "pnpm@8.6.10",
  150. "pnpm": {
  151. "allowedDeprecatedVersions": {
  152. "sourcemap-codec": "*",
  153. "domexception": "*",
  154. "w3c-hr-time": "*",
  155. "stable": "*",
  156. "abab": "*"
  157. }
  158. }
  159. }