Introduces modules/hospitality with 54 routes, BFF proxy, capability-gated nav, CRUD factory, and architecture validation docs. Co-authored-by: Cursor <cursoragent@cursor.com>
55 lines
2.1 KiB
JSON
55 lines
2.1 KiB
JSON
{
|
|
"name": "superapp-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --hostname 0.0.0.0 --port 3000",
|
|
"build": "next build",
|
|
"start": "next start --hostname 0.0.0.0 --port 3000",
|
|
"lint": "next lint",
|
|
"typecheck": "tsc --noEmit",
|
|
"validate:architecture": "node scripts/validate-architecture.mjs",
|
|
"validate:beauty-imports": "node scripts/validate-beauty-imports.mjs",
|
|
"validate:beauty-routes": "node scripts/validate-beauty-routes.mjs",
|
|
"validate:beauty-bundle": "node scripts/validate-beauty-bundle.mjs",
|
|
"validate:healthcare-imports": "node scripts/validate-healthcare-imports.mjs",
|
|
"validate:healthcare-routes": "node scripts/validate-healthcare-routes.mjs",
|
|
"validate:healthcare-bundle": "node scripts/validate-healthcare-bundle.mjs",
|
|
"validate:healthcare-circular": "node scripts/validate-healthcare-circular.mjs",
|
|
"validate:healthcare": "npm run validate:healthcare-imports && npm run validate:healthcare-routes && npm run validate:healthcare-circular && npm run validate:architecture",
|
|
"validate:hospitality-routes": "node scripts/validate-hospitality-routes.mjs",
|
|
"validate:hospitality": "npm run validate:hospitality-routes && npm run validate:architecture"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^5.4.0",
|
|
"@tanstack/react-query": "^5.101.4",
|
|
"@tanstack/react-table": "^8.21.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"dayjs": "^1.11.21",
|
|
"framer-motion": "^12.42.2",
|
|
"jalaali-js": "^2.0.0",
|
|
"lucide-react": "^1.26.0",
|
|
"next": "15.5.18",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-hook-form": "^7.82.0",
|
|
"recharts": "^3.10.0",
|
|
"sonner": "^2.0.7",
|
|
"tailwind-merge": "^3.6.0",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jalaali-js": "^1.2.0",
|
|
"@types/node": "^20.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"autoprefixer": "^10.4.0",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-next": "^15.5.18",
|
|
"postcss": "^8.4.0",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "^5.4.0"
|
|
}
|
|
}
|