package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "nuxt-app",
  3. "private": true,
  4. "scripts": {
  5. "build": "nuxt build --dotenv .env.development",
  6. "build:staging": "nuxt build --dotenv .env.staging",
  7. "build:pro": "nuxt build --dotenv .env.production",
  8. "dev": "nuxt dev --dotenv .env.development",
  9. "dev:staging": "nuxt dev --dotenv .env.staging",
  10. "dev:pro": "nuxt dev --dotenv .env.production",
  11. "generate": "nuxt generate",
  12. "preview": "nuxt preview",
  13. "postinstall": "nuxt prepare"
  14. },
  15. "dependencies": {
  16. "@pinia/nuxt": "^0.5.5",
  17. "@popperjs/core": "^2.11.8",
  18. "@vueuse/core": "^11.1.0",
  19. "@vueuse/nuxt": "^11.1.0",
  20. "accounting": "^0.4.1",
  21. "dayjs": "^1.11.13",
  22. "dayjs-nuxt": "^2.1.11",
  23. "lodash-es": "^4.17.21",
  24. "md5": "^2.3.0",
  25. "naive-ui": "^2.39.0",
  26. "nanoid": "^5.0.8",
  27. "nuxt": "^3.13.0",
  28. "nuxt-icons": "^3.2.1",
  29. "nuxt-swiper": "^2.0.0",
  30. "nuxtjs-naive-ui": "^1.0.2",
  31. "pinia": "^2.2.4",
  32. "vue": "latest",
  33. "vue-cropper": "^1.1.4",
  34. "vue-draggable-plus": "^0.5.6",
  35. "vue-router": "latest",
  36. "vue3-seamless-scroll": "^2.0.1"
  37. },
  38. "devDependencies": {
  39. "@css-render/vue3-ssr": "^0.15.14",
  40. "@element-plus/nuxt": "^1.0.10",
  41. "@nuxt/icon": "^1.5.5",
  42. "@nuxtjs/tailwindcss": "^6.12.1",
  43. "@samk-dev/nuxt-vcalendar": "^1.0.4",
  44. "@types/node": "^22.7.3",
  45. "element-plus": "^2.8.6",
  46. "prettier": "^3.3.3",
  47. "prettier-plugin-tailwindcss": "^0.6.6",
  48. "sass": "^1.79.3",
  49. "unplugin-auto-import": "^0.18.3",
  50. "unplugin-vue-components": "^0.27.4"
  51. }
  52. }