2024-08-07 10:30:38 -05:00
|
|
|
{
|
|
|
|
"name": "rent_portal",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"type": "module",
|
|
|
|
"scripts": {
|
|
|
|
"build": "next build",
|
|
|
|
"db:generate": "drizzle-kit generate",
|
|
|
|
"db:migrate": "drizzle-kit migrate",
|
|
|
|
"db:push": "drizzle-kit push",
|
|
|
|
"db:studio": "drizzle-kit studio",
|
|
|
|
"dev": "next dev",
|
|
|
|
"lint": "next lint",
|
2024-08-07 16:09:45 -05:00
|
|
|
"start": "next start",
|
2024-08-07 21:52:41 -05:00
|
|
|
"generate-apple-secret": "tsx src/scripts/generate_apple_secret.ts",
|
2024-08-08 04:25:41 -05:00
|
|
|
"go": "git pull && next dev",
|
|
|
|
"goprod": "git pull && next build && next start"
|
2024-08-07 10:30:38 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-08-07 16:09:45 -05:00
|
|
|
"@auth/drizzle-adapter": "^1.4.2",
|
2024-08-08 15:46:27 -05:00
|
|
|
"@hookform/resolvers": "^3.9.0",
|
|
|
|
"@radix-ui/react-alert-dialog": "^1.1.1",
|
|
|
|
"@radix-ui/react-avatar": "^1.1.0",
|
2024-08-07 20:24:08 -05:00
|
|
|
"@radix-ui/react-dropdown-menu": "^2.1.1",
|
2024-08-08 15:46:27 -05:00
|
|
|
"@radix-ui/react-label": "^2.1.0",
|
|
|
|
"@radix-ui/react-navigation-menu": "^1.2.0",
|
|
|
|
"@radix-ui/react-popover": "^1.1.1",
|
2024-08-07 20:24:08 -05:00
|
|
|
"@radix-ui/react-slot": "^1.1.0",
|
2024-08-08 15:46:27 -05:00
|
|
|
"@radix-ui/react-toast": "^1.2.1",
|
2024-08-07 10:30:38 -05:00
|
|
|
"@t3-oss/env-nextjs": "^0.10.1",
|
2024-08-07 16:09:45 -05:00
|
|
|
"@types/jsonwebtoken": "^9.0.6",
|
2024-08-07 19:55:00 -05:00
|
|
|
"class-variance-authority": "^0.7.0",
|
|
|
|
"clsx": "^2.1.1",
|
2024-08-07 16:09:45 -05:00
|
|
|
"dotenv": "^16.4.5",
|
2024-08-07 10:30:38 -05:00
|
|
|
"drizzle-orm": "^0.30.10",
|
2024-08-07 16:09:45 -05:00
|
|
|
"geist": "^1.3.1",
|
|
|
|
"jsonwebtoken": "^9.0.2",
|
2024-08-07 19:55:00 -05:00
|
|
|
"lucide-react": "^0.424.0",
|
2024-08-07 16:09:45 -05:00
|
|
|
"next": "^14.2.5",
|
2024-08-07 10:30:38 -05:00
|
|
|
"next-auth": "5.0.0-beta.20",
|
2024-08-07 20:24:08 -05:00
|
|
|
"next-themes": "^0.3.0",
|
2024-08-07 10:30:38 -05:00
|
|
|
"postgres": "^3.4.4",
|
|
|
|
"react": "^18.3.1",
|
|
|
|
"react-dom": "^18.3.1",
|
2024-08-08 15:46:27 -05:00
|
|
|
"react-hook-form": "^7.52.2",
|
|
|
|
"server-only": "^0.0.1",
|
2024-08-07 19:55:00 -05:00
|
|
|
"tailwind-merge": "^2.4.0",
|
|
|
|
"tailwindcss-animate": "^1.0.7",
|
2024-08-07 16:09:45 -05:00
|
|
|
"zod": "^3.23.8"
|
2024-08-07 10:30:38 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-07 16:09:45 -05:00
|
|
|
"@types/eslint": "^8.56.11",
|
|
|
|
"@types/node": "^20.14.14",
|
2024-08-07 10:30:38 -05:00
|
|
|
"@types/react": "^18.3.3",
|
|
|
|
"@types/react-dom": "^18.3.0",
|
2024-08-07 16:09:45 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
|
|
"@typescript-eslint/parser": "^7.18.0",
|
2024-08-07 10:30:38 -05:00
|
|
|
"drizzle-kit": "^0.21.4",
|
|
|
|
"eslint": "^8.57.0",
|
2024-08-07 16:09:45 -05:00
|
|
|
"eslint-config-next": "^14.2.5",
|
2024-08-07 10:30:38 -05:00
|
|
|
"eslint-plugin-drizzle": "^0.2.3",
|
2024-08-07 16:09:45 -05:00
|
|
|
"postcss": "^8.4.41",
|
|
|
|
"prettier": "^3.3.3",
|
2024-08-07 10:30:38 -05:00
|
|
|
"prettier-plugin-tailwindcss": "^0.6.5",
|
2024-08-08 15:46:27 -05:00
|
|
|
"tailwindcss": "^3.4.9",
|
2024-08-07 16:09:45 -05:00
|
|
|
"ts-node": "^10.9.2",
|
2024-08-08 15:46:27 -05:00
|
|
|
"tsx": "^4.17.0",
|
2024-08-07 16:09:45 -05:00
|
|
|
"typescript": "^5.5.4"
|
2024-08-07 10:30:38 -05:00
|
|
|
},
|
|
|
|
"ct3aMetadata": {
|
|
|
|
"initVersion": "7.36.2"
|
|
|
|
},
|
|
|
|
"packageManager": "pnpm@9.6.0"
|
|
|
|
}
|