package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "boot-vue",
  3. "type": "module",
  4. "version": "0.0.1",
  5. "private": true,
  6. "packageManager": "pnpm@8.15.5",
  7. "description": "Vue starter template with UnoCSS",
  8. "keywords": [
  9. "BootVue",
  10. "boot-vue",
  11. "vite",
  12. "unocss",
  13. "fast",
  14. "boot"
  15. ],
  16. "main": "src/main.ts",
  17. "scripts": {
  18. "dev": "vite",
  19. "build": "vite build",
  20. "typecheck": "vue-tsc --noEmit",
  21. "preview": "vite preview",
  22. "lint": "eslint .",
  23. "lint:fix": "eslint . --fix",
  24. "test": "vitest",
  25. "test:unit": "vitest",
  26. "test:coverage": "vitest run --coverage",
  27. "prepare": "husky install",
  28. "preinstall": "npx only-allow pnpm"
  29. },
  30. "dependencies": {
  31. "@kirklin/logger": "^0.0.2",
  32. "@kirklin/reset-css": "^0.0.4",
  33. "@vitejs/plugin-vue-jsx": "^3.1.0",
  34. "@vueuse/core": "^10.9.0",
  35. "axios": "^1.7.7",
  36. "daisyui": "^3.9.4",
  37. "element-plus": "^2.8.7",
  38. "iso-639-1": "^3.1.2",
  39. "nprogress": "^0.2.0",
  40. "pinia": "^2.1.7",
  41. "vant": "^4.9.8",
  42. "vue": "^3.4.21",
  43. "vue-i18n": "^9.10.2",
  44. "vue-router": "^4.3.0",
  45. "xlsx": "^0.18.5"
  46. },
  47. "devDependencies": {
  48. "@commitlint/cli": "^19.2.1",
  49. "@commitlint/config-conventional": "^19.1.0",
  50. "@iconify-json/mdi": "^1.1.64",
  51. "@iconify-json/tabler": "^1.1.109",
  52. "@intlify/unplugin-vue-i18n": "^3.0.1",
  53. "@kirklin/eslint-config": "^2.2.0",
  54. "@types/node": "^20.11.30",
  55. "@types/nprogress": "^0.2.3",
  56. "@unocss/eslint-config": "^0.58.6",
  57. "@vitejs/plugin-vue": "^5.0.4",
  58. "@vitest/coverage-c8": "^0.33.0",
  59. "@vue/compiler-dom": "^3.4.21",
  60. "@vue/test-utils": "^2.4.5",
  61. "eslint": "^8.57.0",
  62. "eslint-plugin-format": "^0.1.0",
  63. "husky": "^9.0.11",
  64. "jsdom": "^24.0.0",
  65. "lint-staged": "^15.2.2",
  66. "pnpm": "^8.15.5",
  67. "typescript": "^5.4.2",
  68. "unocss": "^0.58.6",
  69. "unocss-preset-chinese": "^0.3.2",
  70. "unocss-preset-daisy": "^7.0.0",
  71. "unocss-preset-ease": "^0.0.3",
  72. "unplugin-auto-import": "^0.17.5",
  73. "unplugin-icons": "^0.18.5",
  74. "unplugin-vue-components": "^0.26.0",
  75. "vite": "^5.2.0",
  76. "vite-plugin-inspect": "^0.8.3",
  77. "vite-plugin-pwa": "^0.19.5",
  78. "vite-plugin-vue-devtools": "^7.0.19",
  79. "vitest": "^1.4.0",
  80. "vue-tsc": "^2.0.7"
  81. },
  82. "lint-staged": {
  83. "**/*": "eslint --fix"
  84. }
  85. }