Renames all user-facing branding to match the new getodoomcp.com domain: page title/meta, navbar, landing hero/footer, all auth pages, dashboard sidebar, contact email, package.json name. Also updates a stale hardcoded old-domain URL in the landing hero's MCP endpoint mockup, and the VITE_API_URL fallback defaults in DashboardHome/Endpoints to the new api.getodoomcp.com backend domain. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
33 lines
771 B
JSON
33 lines
771 B
JSON
{
|
|
"name": "getodoomcp-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"
|
|
}
|
|
}
|