This repository was archived by the owner on Oct 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.23 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.23 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
{
"name": "framesv2-remix-cf-starter",
"private": true,
"version": "0.0.1",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "npm run build && wrangler pages deploy --branch=main",
"dev": "remix vite:dev",
"migrate": "tsx ./scripts/migrator.ts",
"start": "wrangler pages dev ./build/client",
"typecheck": "tsc",
"typegen": "wrangler types"
},
"dependencies": {
"@farcaster/frame-sdk": "^0.0.32",
"@farcaster/frame-wagmi-connector": "^0.0.20",
"@hono/zod-validator": "^0.4.3",
"@neondatabase/serverless": "^0.10.4",
"@privy-io/react-auth": "^2.8.2",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-toast": "^1.2.6",
"@remix-run/cloudflare": "^2.16.4",
"@remix-run/dev": "^2.16.4",
"@remix-run/react": "^2.16.4",
"@remixicon/react": "^4.6.0",
"@tanstack/react-query": "^5.71.5",
"@upstash/redis": "^1.34.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.18.2",
"hono": "^4.7.5",
"isbot": "^4.4.0",
"kysely": "^0.27.6",
"kysely-neon": "^1.3.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"remix-themes": "^1.6.1",
"remix-utils": "^8.5.0",
"remix-vite": "^0.3.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.3",
"viem": "^2.25.0",
"wagmi": "^2.14.16",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cloudflare/workers-types": "^4.20250404.0",
"@hono/node-server": "^1.14.0",
"@hono/vite-cloudflare-pages": "^0.4.2",
"@hono/vite-dev-server": "^0.11.1",
"@remix-run/fs-routes": "^2.16.4",
"@remix-run/route-config": "^2.16.4",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.2",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@types/ws": "^8.18.1",
"arctic": "^3.6.0",
"dotenv": "^16.4.7",
"postcss": "^8.5.3",
"remix-hono": "^0.0.16",
"tailwindcss": "^4.1.2",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^5.4.17",
"wrangler": "^3.114.4",
"ws": "^8.18.1"
},
"engines": {
"node": ">=18.0.0"
}
}