TorbatYar/frontend/package.json
Mortezakoohjani 4451b32a33 feat(payment-frontend): ship Torbat Pay admin portal for MVP 14.0-14.5
Add payment module, BFF proxy, hub/dashboard/ops/PSP/merchant screens wired to real APIs, and mark payment-frontend complete in project status.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-27 18:35:07 +03:30

68 lines
3.5 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:accounting-imports": "node scripts/validate-accounting-imports.mjs",
"validate:accounting-routes": "node scripts/validate-accounting-routes.mjs",
"validate:accounting-circular": "node scripts/validate-accounting-circular.mjs",
"validate:accounting-bundle": "node scripts/validate-accounting-bundle.mjs",
"validate:accounting": "npm run validate:accounting-imports && npm run validate:accounting-routes && npm run validate:accounting-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",
"validate:delivery-routes": "node scripts/validate-delivery-routes.mjs",
"validate:delivery": "npm run validate:delivery-routes && npm run validate:architecture",
"validate:experience-routes": "node scripts/validate-experience-routes.mjs",
"validate:experience": "npm run validate:experience-routes && node modules/experience/__tests__/nav-filter.mjs && node modules/experience/__tests__/a11y-smoke.mjs && node modules/experience/__tests__/perf-smoke.mjs && npm run validate:architecture",
"validate:payment-routes": "node scripts/validate-payment-routes.mjs",
"validate:payment": "npm run validate:payment-routes && npm run validate:architecture",
"scaffold:communication": "node scripts/scaffold-communication-module.mjs",
"scaffold:experience": "node scripts/scaffold-experience-module.mjs"
},
"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"
}
}