package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "private": true,
  3. "scripts": {
  4. "build": "cross-env NODE_ENV=production vite-ssg build",
  5. "dev": "vite --port 3333 --open",
  6. "lintfix": "eslint \"**/*.{vue,ts,js}\" --fix",
  7. "lint": "eslint \"**/*.{vue,ts,js}\"",
  8. "test": "cypress open",
  9. "preview": "vite preview",
  10. "preview-https": "serve dist",
  11. "typecheck": "vue-tsc --noEmit",
  12. "do-lint": "pnpm run lint",
  13. "do-lintfix": "pnpm run lintfix",
  14. "do-build-prod": "pnpm run build",
  15. "do-test": "pnpm run test"
  16. },
  17. "dependencies": {
  18. "@vueuse/core": "^7.1.2",
  19. "@vueuse/head": "^0.7.2",
  20. "nprogress": "^0.2.0",
  21. "pinia": "^2.0.5",
  22. "vue": "^3.2.23",
  23. "vue-demi": "^0.12.1",
  24. "vue-i18n": "^9.1.9",
  25. "vue-router": "^4.0.12"
  26. },
  27. "devDependencies": {
  28. "@antfu/eslint-config": "^0.11.1",
  29. "@iconify-json/carbon": "^1.0.11",
  30. "@intlify/vite-plugin-vue-i18n": "^3.2.1",
  31. "@types/nprogress": "^0.2.0",
  32. "@vitejs/plugin-vue": "^1.10.1",
  33. "@vue/compiler-sfc": "^3.2.23",
  34. "@vue/server-renderer": "^3.2.23",
  35. "critters": "^0.0.15",
  36. "cross-env": "^7.0.3",
  37. "cypress": "^9.1.0",
  38. "eslint": "^8.3.0",
  39. "eslint-plugin-cypress": "^2.12.1",
  40. "https-localhost": "^4.7.0",
  41. "pnpm": "^6.23.2",
  42. "typescript": "^4.5.2",
  43. "unplugin-auto-import": "^0.5.1",
  44. "unplugin-icons": "^0.12.22",
  45. "unplugin-vue-components": "^0.17.2",
  46. "vite": "^2.6.14",
  47. "vite-plugin-fonts": "^0.2.2",
  48. "vite-plugin-inspect": "^0.3.11",
  49. "vite-plugin-md": "^0.11.4",
  50. "vite-plugin-pages": "^0.19.0-beta.6",
  51. "vite-plugin-pwa": "^0.11.9",
  52. "vite-plugin-vue-layouts": "^0.5.0",
  53. "vite-plugin-windicss": "^1.5.3",
  54. "vite-ssg": "^0.16.2",
  55. "vue-tsc": "^0.29.6"
  56. }
  57. }