the-tip-top-frontend/package.json
soufiane 7ed5cc83b0 fix: downgrade ESLint to v8 for Next.js compatibility
- Downgrade ESLint from v9 to v8.57.0 (required by eslint-config-next)
- Replace eslint.config.js with .eslintrc.json
- Remove incompatible ESLint plugins
- Use standard Next.js ESLint configuration

This resolves the peer dependency conflict where eslint-config-next
requires ESLint 7 or 8, not 9.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-18 15:49:11 +01:00

40 lines
961 B
JSON

{
"name": "the-tip-top-frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "echo \"No tests configured\" && exit 0"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@react-oauth/google": "^0.12.2",
"axios": "^1.13.1",
"bootstrap": "^5.3.3",
"lucide-react": "^0.553.0",
"next": "14.2.4",
"next-auth": "^4.24.7",
"nodemailer": "^7.0.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.66.0",
"react-hot-toast": "^2.6.0",
"recharts": "^3.4.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "24.9.2",
"@types/react": "19.2.2",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"jiti": "^2.6.1",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.13",
"typescript": "5.9.3"
}
}