package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "nshop-front-m",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "next dev -p 3001",
  7. "build": "NODE_ENV=production eslint . && next build",
  8. "start": "next start -p 3001",
  9. "lint": "eslint .",
  10. "lint:fix": "next lint --fix",
  11. "package-version": "npx npm-check-updates"
  12. },
  13. "dependencies": {
  14. "@apollo/client": "^3.14.0",
  15. "@heroicons/react": "^2.2.0",
  16. "@heroui/accordion": "^2.2.25",
  17. "@heroui/alert": "^2.2.32",
  18. "@heroui/avatar": "^2.2.26",
  19. "@heroui/drawer": "^2.2.25",
  20. "@heroui/popover": "^2.3.32",
  21. "@heroui/react": "^2.8.6",
  22. "@heroui/select": "^2.4.29",
  23. "@heroui/switch": "^2.2.27",
  24. "@heroui/system": "^2.4.28",
  25. "@react-aria/visually-hidden": "^3.8.31",
  26. "@react-types/shared": "^3.33.1",
  27. "@reduxjs/toolkit": "^2.10.1",
  28. "clsx": "^2.1.1",
  29. "framer-motion": "^12.23.24",
  30. "graphql": "^16.12.0",
  31. "lucide-react": "^0.563.0",
  32. "next": "16.2.3",
  33. "next-auth": "^4.24.13",
  34. "next-themes": "^0.4.6",
  35. "react": "19.2.5",
  36. "react-dom": "19.2.5",
  37. "react-hook-form": "^7.66.1",
  38. "react-redux": "^9.2.0",
  39. "swiper": "^12.1.3"
  40. },
  41. "devDependencies": {
  42. "@tailwindcss/postcss": "^4",
  43. "@types/node": "^20",
  44. "@types/react": "19.2.14",
  45. "@types/react-dom": "19.2.3",
  46. "eslint": "^9",
  47. "eslint-config-next": "16.2.3",
  48. "tailwindcss": "^4",
  49. "ts-node": "^10.9.2",
  50. "typescript": "^5"
  51. },
  52. "pnpm": {
  53. "overrides": {
  54. "@types/react": "19.2.14",
  55. "@types/react-dom": "19.2.3"
  56. }
  57. }
  58. }