-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.08 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
{
"name": "grip",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "biome lint .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:check-migrations": "node scripts/check-migrations.js",
"env:check-sync": "node scripts/check-env-sync.js",
"check:design-system": "node scripts/check-design-system.js",
"prepare": "lefthook install",
"hooks:install": "lefthook install",
"hooks:uninstall": "lefthook uninstall",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"remotion:studio": "remotion studio _remotion/index.ts",
"remotion:render": "remotion render _remotion/index.ts",
"remotion:render:all": "remotion render _remotion/index.ts WebhookFlow out/webhook-flow.mp4 && remotion render _remotion/index.ts PasskeyOnboarding out/passkey-onboarding.mp4 && remotion render _remotion/index.ts BatchPayouts out/batch-payouts.mp4"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@better-auth/passkey": "^1.4.6",
"@better-fetch/fetch": "^1.1.21",
"@octokit/auth-app": "^8.1.2",
"@octokit/rest": "^22.0.1",
"@octokit/types": "^16.0.0",
"@octokit/webhooks": "^14.2.0",
"@octokit/webhooks-types": "^7.6.1",
"@simplewebauthn/browser": "^13.0.0",
"@simplewebauthn/server": "^13.0.0",
"@tanstack/react-query": "^5.90.12",
"@turnkey/api-key-stamper": "^0.5.0",
"@turnkey/http": "^3.16.0",
"@turnkey/sdk-server": "^4.12.1",
"@turnkey/viem": "^0.14.20",
"@wagmi/core": "latest",
"better-auth": "^1.2.7",
"better-auth-tempo": "^0.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^0.38.3",
"jose": "^6.1.3",
"lucide-react": "^0.469.0",
"nanostores": "^1.1.0",
"next": "^15.2.7",
"next-themes": "^0.4.6",
"ox": "^0.11.1",
"postgres": "^3.4.5",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.5.1",
"shadcn": "^3.6.2",
"tailwind-merge": "^2.6.0",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2",
"viem": "latest",
"wagmi": "latest",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.57.0",
"@remotion/bundler": "^4.0.405",
"@remotion/cli": "^4.0.405",
"@remotion/renderer": "^4.0.405",
"@tailwindcss/postcss": "^4.1.18",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"better-sqlite3": "^12.5.0",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.30.1",
"lefthook": "^2.0.9",
"postcss": "^8.4.49",
"remotion": "^4.0.405",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}