package.json 2.2 KB

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