package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "nextjs-commerce-v3",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "next dev",
  7. "build": "NODE_ENV=production eslint . && next build",
  8. "start": "next start",
  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/drawer": "^2.2.25",
  18. "@heroui/react": "^2.8.6",
  19. "@heroui/select": "^2.4.29",
  20. "@reduxjs/toolkit": "^2.10.1",
  21. "clsx": "^2.1.1",
  22. "framer-motion": "^12.23.24",
  23. "graphql": "^16.12.0",
  24. "lucide-react": "^0.563.0",
  25. "next": "16.0.10",
  26. "next-auth": "^4.24.13",
  27. "next-themes": "^0.4.6",
  28. "react": "19.2.0",
  29. "react-dom": "19.2.0",
  30. "react-hook-form": "^7.66.1",
  31. "react-redux": "^9.2.0"
  32. },
  33. "devDependencies": {
  34. "@tailwindcss/postcss": "^4",
  35. "@types/node": "^20",
  36. "@types/react": "^19",
  37. "@types/react-dom": "^19",
  38. "eslint": "^9",
  39. "eslint-config-next": "16.0.10",
  40. "tailwindcss": "^4",
  41. "ts-node": "^10.9.2",
  42. "typescript": "^5"
  43. }
  44. }