-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "topcredit",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"check": "biome check .",
"check:unsafe": "biome check --write --unsafe .",
"check:write": "biome check --write .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:migrate:if-pending": "tsx scripts/migrate-if-pending.ts",
"db:nuke": "tsx scripts/nuke.ts",
"db:nuke:migrate": "tsx scripts/nuke.ts && pnpm db:migrate",
"db:seed": "tsx scripts/seed.ts",
"db:studio": "drizzle-kit studio",
"test:e2e": "playwright test",
"test:e2e:slomo": "PW_SLOW_MO=1500 playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"dev": "next dev",
"dev:inngest": "npx --ignore-scripts=false inngest-cli@latest dev -u http://localhost:3000/api/inngest",
"preview": "next build && next start",
"start": "next start",
"test:unit": "node --import tsx --test --test-timeout=120000 \"src/lib/**/*.test.ts\"",
"typecheck": "tsc --noEmit",
"validate": "pnpm check && pnpm typecheck",
"prepare": "husky"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.2",
"@casl/ability": "^6.8.1",
"@faker-js/faker": "^10.5.0",
"@neondatabase/serverless": "^1.1.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.2.6",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/render": "^2.1.0",
"@t3-oss/env-nextjs": "^0.13.11",
"@tanstack/react-table": "^8.21.3",
"@vercel/blob": "^2.6.1",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"decimal.js-light": "^2.5.1",
"drizzle-orm": "^0.45.2",
"file-type": "^22.0.1",
"inngest": "^4.15.0",
"input-otp": "^1.4.2",
"lucide-react": "^1.28.0",
"next": "16.3.0",
"next-auth": "^4.24.14",
"next-intl": "^4.13.4",
"next-themes": "^0.4.6",
"postgres": "^3.4.9",
"qrcode": "^1.5.4",
"radix-ui": "^1.6.7",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"resend": "^6.18.1",
"sonner": "^2.0.7",
"speakeasy": "^2.0.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^24.13.3",
"@types/nodemailer": "^8.0.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/speakeasy": "^2.0.10",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"jose": "^6.2.3",
"postcss": "^8.5.15",
"tailwindcss": "^4.3.0",
"tsx": "^4.23.5",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3"
},
"ct3aMetadata": {
"initVersion": "7.39.3"
},
"packageManager": "pnpm@11.1.3+sha512.c85357fe17ca12dd23dd7071822666dfd7e3cb76fe214e3370b5ea2fb34f2a231185509b63e717f3cd0acb38dd3f8d82bcd5e8172400ae678b70ea4fbed0896d"
}