-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.4 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.4 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
{
"name": "hswlp-shell-ideaboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:prod": "pnpm run opennext:build && wrangler deploy --dry-run --outdir=dist",
"opennext:build": "opennextjs-cloudflare build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"deploy": "pnpm run opennext:build && opennextjs-cloudflare deploy",
"preview": "pnpm run opennext:build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts",
"db:generate": "drizzle-kit generate --name",
"db:migrate:dev": "wrangler d1 migrations apply $(node scripts/get-db-name.mjs) --local",
"d1:cache:clean": "wrangler d1 execute $(node scripts/get-db-name.mjs) --command \"DELETE FROM tags; DELETE FROM revalidations\" --remote",
"email:dev": "email dev -d src/react-email -p 3001",
"list:kv": "wrangler kv key list --namespace-id=$(node scripts/get-kv-id.mjs) --remote | jq '[.[].name]' > kv.log",
"delete:kv": "wrangler kv bulk delete kv.log --namespace-id=$(node scripts/get-kv-id.mjs) --remote"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@heroui/react": "^2.7.6",
"@hookform/resolvers": "^3.10.0",
"@icons-pack/react-simple-icons": "^11.2.0",
"@marsidev/react-turnstile": "^1.1.0",
"@opennextjs/cloudflare": "^1.3.1",
"@oslojs/encoding": "^1.1.0",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-email/components": "0.0.32",
"@react-email/render": "1.0.4",
"@simplewebauthn/browser": "^13.1.0",
"@simplewebauthn/server": "^13.1.1",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.39.3",
"framer-motion": "^12.23.12",
"ipaddr.js": "^2.2.0",
"jspdf": "^2.5.2",
"lucide-react": "^0.471.0",
"motion": "^11.18.0",
"ms": "^2.1.3",
"next": "15.3.3",
"next-themes": "^0.4.6",
"nextjs-toploader": "^3.8.16",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.56.4",
"react-turnstile": "^1.1.4",
"remeda": "^2.22.1",
"slugify": "^1.6.6",
"sonner": "^1.7.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ua-parser-js": "^2.0.0",
"usehooks-ts": "^3.1.0",
"zod": "^3.25.28",
"zsa": "^0.6.0",
"zsa-react": "^0.2.3",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.3.2",
"@simplewebauthn/types": "^12.0.0",
"@tailwindcss/typography": "^0.5.16",
"@types/ms": "^0.7.34",
"@types/node": "^20.19.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.30.6",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"postcss": "^8",
"react-email": "3.0.6",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"wrangler": "^4.20.5"
},
"packageManager": "pnpm@10.14.0"
}