MOHAN 5b4834e6a5 Migrate frontend from Next.js to Vite + React Router
Full technology change: Next.js App Router replaced with Vite +
react-router-dom v6. All 21 pages and 5 landing components converted
(next/link -> Link, next/navigation -> react-router-dom hooks, next/font
-> @fontsource/inter, process.env -> import.meta.env). Dropped the unused
Stripe API routes, which can't run in a client-only Vite build anyway and
were never wired to any page.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-01 17:10:03 +05:30

33 lines
774 B
JSON

{
"name": "odoomcp-cloud-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --port 3000",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fontsource/inter": "^5.0.0",
"clsx": "^2.1.1",
"lucide-react": "^0.400.0",
"react": "^18",
"react-dom": "^18",
"react-router-dom": "^6.26.0",
"recharts": "^3.9.1"
},
"devDependencies": {
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vite": "^5.4.0",
"vite-tsconfig-paths": "^5.0.0"
}
}