package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. "crypto-js": "^4.1.1",
  32. "@kirklin/logger": "^0.0.2",
  33. "@kirklin/reset-css": "^0.0.4",
  34. "@vitejs/plugin-vue-jsx": "^3.1.0",
  35. "@vueuse/core": "^10.9.0",
  36. "axios": "^1.7.7",
  37. "daisyui": "^3.9.4",
  38. "element-plus": "^2.8.7",
  39. "iso-639-1": "^3.1.2",
  40. "nprogress": "^0.2.0",
  41. "pinia": "^2.1.7",
  42. "vant": "^4.9.8",
  43. "vue": "^3.4.21",
  44. "vue-i18n": "^9.10.2",
  45. "vue-router": "^4.3.0",
  46. "xlsx": "^0.18.5"
  47. },
  48. "devDependencies": {
  49. "@commitlint/cli": "^19.2.1",
  50. "@commitlint/config-conventional": "^19.1.0",
  51. "@iconify-json/mdi": "^1.1.64",
  52. "@iconify-json/tabler": "^1.1.109",
  53. "@intlify/unplugin-vue-i18n": "^3.0.1",
  54. "@kirklin/eslint-config": "^2.2.0",
  55. "@types/node": "^20.11.30",
  56. "@types/nprogress": "^0.2.3",
  57. "@unocss/eslint-config": "^0.58.6",
  58. "@vitejs/plugin-vue": "^5.0.4",
  59. "@vitest/coverage-c8": "^0.33.0",
  60. "@vue/compiler-dom": "^3.4.21",
  61. "@vue/test-utils": "^2.4.5",
  62. "eslint": "^8.57.0",
  63. "eslint-plugin-format": "^0.1.0",
  64. "husky": "^9.0.11",
  65. "jsdom": "^24.0.0",
  66. "lint-staged": "^15.2.2",
  67. "pnpm": "^8.15.5",
  68. "typescript": "^5.4.2",
  69. "unocss": "^0.58.6",
  70. "unocss-preset-chinese": "^0.3.2",
  71. "unocss-preset-daisy": "^7.0.0",
  72. "unocss-preset-ease": "^0.0.3",
  73. "unplugin-auto-import": "^0.17.5",
  74. "unplugin-icons": "^0.18.5",
  75. "unplugin-vue-components": "^0.26.0",
  76. "vite": "^5.2.0",
  77. "vite-plugin-inspect": "^0.8.3",
  78. "vite-plugin-pwa": "^0.19.5",
  79. "vite-plugin-vue-devtools": "^7.0.19",
  80. "vitest": "^1.4.0",
  81. "vue-tsc": "^2.0.7"
  82. },
  83. "lint-staged": {
  84. "**/*": "eslint --fix"
  85. }
  86. }