package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. {
  2. "name": "vue3-admin-ts",
  3. "version": "1.9.1",
  4. "license": "MIT",
  5. "author": "kuanghua(869653722@qq.com)",
  6. "packageManager": "pnpm@7.9.0",
  7. "scripts": {
  8. "dev": "vite --mode serve-dev",
  9. "test": "vite --mode serve-test",
  10. "build:test": "vite build --mode build-test",
  11. "build": "vite build --mode build",
  12. "preview:build": "npm run build && vite preview ",
  13. "preview": "vite preview ",
  14. "lint": "eslint --ext .js,.jsx,.vue,.ts,.tsx src --fix",
  15. "prepare": "husky install",
  16. "tsc-check": "tsc",
  17. "vitest": "vitest --ui",
  18. "coverage": "vitest run --coverage"
  19. },
  20. "peerDependencies": {
  21. "vue": "^3.2.26"
  22. },
  23. "dependencies": {
  24. "@element-plus/icons-vue": "^2.0.9",
  25. "@types/lodash": "^4.14.186",
  26. "axios": "0.21.3",
  27. "blueimp-md5": "^2.19.0",
  28. "echarts": "5.3.2",
  29. "el-table-infinite-scroll": "^3.0.1",
  30. "element-plus": "^2.2.9",
  31. "file-saver": "^2.0.5",
  32. "js-cookie": "^3.0.1",
  33. "js-error-collection": "^1.0.7",
  34. "lodash": "^4.17.21",
  35. "mitt": "^3.0.0",
  36. "moment-mini": "2.22.1",
  37. "nprogress": "0.2.0",
  38. "path": "0.12.7",
  39. "path-to-regexp": "6.2.0",
  40. "pinia": "^2.0.16",
  41. "script-loader": "^0.7.2",
  42. "tinymce": "4.9.11",
  43. "vue": "^3.2.26",
  44. "vue-router": "4.0.14",
  45. "vue3-seamless-scroll": "^2.0.1",
  46. "xlsx": "^0.18.5"
  47. },
  48. "devDependencies": {
  49. "@babel/eslint-parser": "7.16.3",
  50. "@types/echarts": "4.9.7",
  51. "@types/mockjs": "1.0.6",
  52. "@types/node": "^17.0.35",
  53. "@typescript-eslint/eslint-plugin": "5.5.0",
  54. "@typescript-eslint/parser": "5.5.0",
  55. "@vitejs/plugin-legacy": "^4.0.2",
  56. "@vitejs/plugin-vue": "^2.3.3",
  57. "@vitejs/plugin-vue-jsx": "1.3.1",
  58. "@vitest/coverage-c8": "^0.22.1",
  59. "@vitest/ui": "^0.22.1",
  60. "@vue/cli-service": "4.5.17",
  61. "@vue/test-utils": "^2.0.2",
  62. "@vueuse/core": "^8.7.5",
  63. "eslint": "7.32.0",
  64. "eslint-config-prettier": "8.3.0",
  65. "eslint-define-config": "1.2.0",
  66. "eslint-plugin-import": "2.25.3",
  67. "eslint-plugin-prettier": "4.0.0",
  68. "eslint-plugin-vue": "8.1.1",
  69. "husky": "7.0.2",
  70. "jsdom": "16.4.0",
  71. "mockjs": "1.1.0",
  72. "prettier": "2.2.1",
  73. "resize-observer-polyfill": "^1.5.1",
  74. "sass": "^1.52.1",
  75. "svg-sprite-loader": "6.0.11",
  76. "typescript": "^4.7.2",
  77. "unocss": "^0.33.5",
  78. "unplugin-auto-import": "^0.5.11",
  79. "unplugin-vue-components": "^0.19.5",
  80. "unplugin-vue-define-options": "^0.6.1",
  81. "vite": "^3.0.7",
  82. "vite-plugin-html": "^3.2.0",
  83. "vite-plugin-mkcert": "^1.7.2",
  84. "vite-plugin-mock": "^2.9.6",
  85. "vite-plugin-style-import": "1.2.1",
  86. "vite-plugin-svg-icons": "1.0.5",
  87. "vitest": "^0.22.1",
  88. "vue-tsc": "^0.34.16"
  89. },
  90. "pnpm": {
  91. "peerDependencyRules": {
  92. "ignoreMissing": [
  93. "html-webpack-plugin",
  94. "vite-plugin-mock",
  95. "unplugin-auto-import",
  96. "unplugin-vue-components",
  97. "vue-template-compiler",
  98. "unocss",
  99. "unplugin",
  100. "vite-plugin-mock",
  101. "@vitejs/plugin-legacy",
  102. "@vitejs/plugin-vue",
  103. "@vitejs/*",
  104. "@babel/*",
  105. "vite",
  106. "vue",
  107. "@unocss/vite",
  108. "rollup",
  109. "vue-jest",
  110. "@babel/*"
  111. ]
  112. }
  113. },
  114. "browserslist": [
  115. "> 1%",
  116. "not ie 11",
  117. "not op_mini all"
  118. ],
  119. "engines": {
  120. "node": ">= 16 <18",
  121. "pnpm": ">= 6 <8"
  122. }
  123. }