-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.66 KB
/
package.json
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
{
"name": "frkn-site",
"version": "1.0.0",
"private": true,
"engines": {
"pnpm": ">=9"
},
"scripts": {
"postinstall": "prisma generate",
"start": "next start",
"dev": "next dev",
"build": "next build",
"test": "npm-run-all test:*",
"test:audit": "pnpm audit",
"test:types": "tsc --noEmit --incremental false",
"test:lint": "biome lint . --diagnostic-level=error",
"test:unit": "jest",
"prisma:push": "prisma db push",
"prisma:push:production": "dotenv -e .env.production.local -- prisma db push"
},
"dependencies": {
"@hookform/resolvers": "3.9.0",
"@nanostores/react": "0.7.3",
"@prisma/client": "5.17.0",
"@radix-ui/react-alert-dialog": "1.1.1",
"@radix-ui/react-dialog": "1.1.1",
"@radix-ui/react-dropdown-menu": "2.1.1",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-label": "2.1.0",
"@radix-ui/react-select": "2.1.1",
"@radix-ui/react-separator": "1.1.0",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-toast": "1.2.1",
"@scure/bip39": "1.3.0",
"@t3-oss/env-nextjs": "0.11.0",
"@tanstack/react-query": "5.51.15",
"@tanstack/react-query-devtools": "5.51.23",
"@trpc/client": "11.0.0-rc.571",
"@trpc/react-query": "11.0.0-rc.571",
"@trpc/server": "11.0.0-rc.571",
"@vercel/edge": "1.1.2",
"@vercel/kv": "2.0.0",
"argon2": "0.31.2",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"framer-motion": "11.3.8",
"geist": "1.3.1",
"js-sha3": "0.9.3",
"jsonwebtoken": "9.0.2",
"ky": "1.7.2",
"lucide-react": "0.408.0",
"mono": "link:geist/font/mono",
"nanoid": "5.0.7",
"nanostores": "0.11.2",
"next": "14.2.15",
"next-international": "1.2.4",
"next-plausible": "3.12.1",
"next-themes": "0.3.0",
"qrcode": "1.5.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.52.1",
"sonner": "1.5.0",
"stripe": "16.8.0",
"superjson": "2.2.1",
"tailwind-merge": "2.4.0",
"tailwindcss-animate": "1.0.7",
"vaul": "0.9.1",
"zod": "3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@next/bundle-analyzer": "14.2.5",
"@types/jest": "29.5.13",
"@types/jsonwebtoken": "9.0.6",
"@types/node": "^20",
"@types/qrcode": "1.5.5",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"dotenv-cli": "7.4.2",
"jest": "29.7.0",
"jest-transform-stub": "2.0.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.39",
"prisma": "5.17.0",
"tailwindcss": "3.4.1",
"ts-jest": "29.2.5",
"typescript": "5.5.3"
},
"pnpm": {
"auditConfig": {
"ignoreCves": ["CVE-2024-4067"]
}
}
}