- Replace Vite + React Router with Next.js 15 App Router - Implement i18n with next-intl (URL-based: /de, /en, /sr) - Add SSR/SSG for all pages (48 static pages generated) - Setup Supabase SSR client for auth - Migrate all pages: Home, About, Portfolio, Blog, Contact, Login, Dashboard, Imprint, Privacy, Terms - Add Docker support with standalone output - Replace i18next with next-intl JSON translations - Use next/image for optimized images Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "portfolio",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"build:images": "node scripts/optimize-images.js",
|
|
"test": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@mdx-js/loader": "^3.1.0",
|
|
"@mdx-js/mdx": "^3.1.0",
|
|
"@mdx-js/react": "^3.1.0",
|
|
"@next/mdx": "^15.1.0",
|
|
"@supabase/ssr": "^0.8.0",
|
|
"@supabase/supabase-js": "^2.39.7",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"framer-motion": "^11.18.2",
|
|
"gray-matter": "^4.0.3",
|
|
"lucide-react": "^0.475.0",
|
|
"next": "^15.1.0",
|
|
"next-intl": "^3.26.0",
|
|
"next-mdx-remote": "^5.0.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-intersection-observer": "^9.8.1",
|
|
"tailwind-merge": "^3.0.1",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"web-vitals": "^5.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/forms": "^0.5.7",
|
|
"@types/mdx": "^2.0.13",
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"autoprefixer": "^10.4.18",
|
|
"eslint": "^9.9.1",
|
|
"eslint-config-next": "^15.1.0",
|
|
"postcss": "^8.4.35",
|
|
"sharp": "^0.34.3",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5.5.3",
|
|
"vitest": "^1.3.1"
|
|
}
|
|
}
|