Initial commit of Vellum, an event photo product for guest uploads, host moderation, and original-quality galleries.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-09-07 19:36:14 -04:00
co-authored by Cursor
commit 27e2f196eb
149 changed files with 13847 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
{
"name": "@album/web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "bun --env-file=../../.env x next dev --turbopack",
"build": "bun --env-file=../../.env x next build",
"start": "bun --env-file=../../.env x next start",
"auth:seed": "bun --env-file=../../.env src/server/seed-auth.ts",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"dependencies": {
"@album/contracts": "workspace:*",
"@album/database": "workspace:*",
"@album/email": "workspace:*",
"@album/storage": "workspace:*",
"@tanstack/react-query": "^5.90.2",
"@trpc/client": "^11.4.3",
"@trpc/react-query": "^11.4.3",
"@trpc/server": "^11.4.3",
"better-auth": "1.6.24",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cn": "^0.2.6",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.45.2",
"lucide-react": "^0.468.0",
"next": "16.2.12",
"next-themes": "^0.4.6",
"radix-ui": "^1.6.7",
"react": "19.2.8",
"react-dom": "19.2.8",
"server-only": "^0.0.1",
"shadcn": "^4.21.0",
"sonner": "^2.0.7",
"superjson": "^2.2.2",
"tailwind-merge": "^3.3.0",
"tw-animate-css": "^1.4.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.10",
"@types/bun": "^1.3.14",
"@types/node": "^22.15.32",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"postcss": "^8.5.22",
"tailwindcss": "^4.1.10",
"typescript": "^5.8.3"
}
}