You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
4.0 KiB

3 years ago
3 years ago
3 years ago
3 years ago
  1. {
  2. "name": "pure-admin-thin",
  3. "version": "3.0",
  4. "private": true,
  5. "engines": {
  6. "node": ">= 16",
  7. "pnpm": ">= 6"
  8. },
  9. "scripts": {
  10. "dev": "cross-env --max_old_space_size=4096 vite",
  11. "serve": "pnpm dev",
  12. "build": "rimraf dist && cross-env vite build",
  13. "report": "rimraf dist && cross-env vite build",
  14. "preview": "vite preview",
  15. "preview:build": "pnpm build && vite preview",
  16. "clean:cache": "rm -rf node_modules && rm -rf .eslintcache && pnpm install",
  17. "lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
  18. "lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
  19. "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,css,scss,postcss,less}\" --cache --cache-location node_modules/.cache/stylelint/",
  20. "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
  21. "lint:pretty": "pretty-quick --staged",
  22. "lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint",
  23. "prepare": "husky install",
  24. "preinstall": "npx only-allow pnpm"
  25. },
  26. "browserslist": [
  27. "> 1%",
  28. "not ie 11",
  29. "not op_mini all"
  30. ],
  31. "dependencies": {
  32. "@ctrl/tinycolor": "^3.4.0",
  33. "@vueuse/core": "^7.6.2",
  34. "@vueuse/motion": "^2.0.0-beta.9",
  35. "@vueuse/shared": "^7.6.2",
  36. "animate.css": "^4.1.1",
  37. "axios": "^0.25.0",
  38. "css-color-function": "^1.3.3",
  39. "dayjs": "^1.10.7",
  40. "element-plus": "^2.0.3",
  41. "element-resize-detector": "^1.2.3",
  42. "js-cookie": "^3.0.1",
  43. "lodash-es": "^4.17.21",
  44. "lodash-unified": "^1.0.2",
  45. "mitt": "^3.0.0",
  46. "mockjs": "^1.1.0",
  47. "nprogress": "^0.2.0",
  48. "path": "^0.12.7",
  49. "pinia": "^2.0.11",
  50. "qs": "^6.10.2",
  51. "resize-observer-polyfill": "^1.5.1",
  52. "responsive-storage": "^1.0.11",
  53. "rgb-hex": "^4.0.0",
  54. "vue": "^3.2.31",
  55. "vue-i18n": "^9.2.0-beta.30",
  56. "vue-router": "^4.0.12",
  57. "vue-types": "^4.1.1"
  58. },
  59. "devDependencies": {
  60. "@commitlint/cli": "13.1.0",
  61. "@commitlint/config-conventional": "13.1.0",
  62. "@iconify-icons/ep": "^1.1.3",
  63. "@iconify-icons/fa": "^1.1.1",
  64. "@iconify-icons/fa-solid": "^1.1.2",
  65. "@iconify-icons/ri": "^1.1.1",
  66. "@iconify/vue": "^3.1.3",
  67. "@types/element-resize-detector": "1.1.3",
  68. "@types/js-cookie": "^3.0.1",
  69. "@types/lodash-es": "^4.17.6",
  70. "@types/mockjs": "1.0.3",
  71. "@types/node": "14.14.14",
  72. "@types/nprogress": "0.2.0",
  73. "@types/qs": "^6.9.7",
  74. "@typescript-eslint/eslint-plugin": "^5.10.2",
  75. "@typescript-eslint/parser": "^5.10.2",
  76. "@vitejs/plugin-legacy": "^1.7.1",
  77. "@vitejs/plugin-vue": "^2.2.0",
  78. "@vitejs/plugin-vue-jsx": "^1.3.7",
  79. "@vue/eslint-config-prettier": "^7.0.0",
  80. "@vue/eslint-config-typescript": "^10.0.0",
  81. "@zougt/vite-plugin-theme-preprocessor": "^1.4.4",
  82. "autoprefixer": "^10.4.2",
  83. "cross-env": "7.0.3",
  84. "eslint": "^8.8.0",
  85. "eslint-plugin-prettier": "^4.0.0",
  86. "eslint-plugin-vue": "^8.4.1",
  87. "husky": "7.0.2",
  88. "lint-staged": "11.1.2",
  89. "picocolors": "^1.0.0",
  90. "postcss": "^8.4.6",
  91. "postcss-html": "^1.3.0",
  92. "postcss-import": "14.0.0",
  93. "postcss-scss": "^4.0.3",
  94. "prettier": "^2.5.1",
  95. "pretty-quick": "3.1.1",
  96. "rimraf": "3.0.2",
  97. "rollup-plugin-visualizer": "^5.6.0",
  98. "sass": "^1.49.0",
  99. "sass-loader": "^12.4.0",
  100. "stylelint": "^14.3.0",
  101. "stylelint-config-html": "^1.0.0",
  102. "stylelint-config-prettier": "^9.0.3",
  103. "stylelint-config-recommended": "^6.0.0",
  104. "stylelint-config-standard": "^24.0.0",
  105. "stylelint-order": "^5.0.0",
  106. "typescript": "^4.5.5",
  107. "unplugin-element-plus": "^0.2.0",
  108. "vite": "2.7.13",
  109. "vite-plugin-live-reload": "^2.1.0",
  110. "vite-plugin-mock": "^2.9.6",
  111. "vite-plugin-remove-console": "^0.0.6",
  112. "vite-plugin-style-import": "1.4.1",
  113. "vite-plugin-windicss": "^1.7.0",
  114. "vite-svg-loader": "2.2.0",
  115. "vue-eslint-parser": "^8.2.0",
  116. "windicss": "^3.4.3"
  117. },
  118. "repository": "[email protected]:xiaoxian521/vue-pure-admin.git",
  119. "author": "xiaoxian521",
  120. "license": "MIT"
  121. }