Frontend: - next 15 → 16.2.6, react 19.0 → 19.2.6, eslint-config-next updated to match - Add missing axios dependency (was implicit, broke build) - Fix VideoPlayer.tsx broken absolute import path (pre-existing bug) - Fix uploads route handler params to async (Next.js 16 breaking change) - Remove deprecated images.domains → remotePatterns in next.config.js - Remove experimental.serverActions (promoted to stable, then removed in v16) - Update lint script: next lint removed in v16, now uses eslint directly Backend: - express 4 → 5.2.1, mongoose 8 → 9.6.2 - bcrypt 5 → 6, helmet 7 → 8, zod 3 → 4
32 lines
739 B
JSON
32 lines
739 B
JSON
{
|
|
"name": "lad-website-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.16.1",
|
|
"framer-motion": "^12.6.0",
|
|
"next": "^16.2.6",
|
|
"next-themes": "^0.4.6",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4.0.15",
|
|
"@types/node": "^20.0.0",
|
|
"@types/react": "^19.2.15",
|
|
"@types/react-dom": "^19.2.3",
|
|
"autoprefixer": "^10.4.0",
|
|
"eslint": "^9.0.0",
|
|
"eslint-config-next": "^16.2.6",
|
|
"postcss": "^8.4.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"typescript": "^5.8.0"
|
|
}
|
|
}
|