-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.36 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.36 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "control-the-stream",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "next build --webpack",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:pull": "drizzle-kit pull",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"dev": "next dev --webpack",
"dev:memory": "NODE_OPTIONS=--max-old-space-size=8192 next dev",
"dev:turbo": "next dev --turbopack",
"format": "prettier --write .",
"lint": "next lint",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@base-org/account": "^2.4.0",
"@base-org/account-ui": "^1.0.1",
"@coinbase/onchainkit": "^0.38.19",
"@farcaster/auth-client": "^0.7.0",
"@farcaster/miniapp-core": "^0.3.8",
"@farcaster/miniapp-node": "^0.1.8",
"@farcaster/miniapp-sdk": "^0.1.9",
"@farcaster/miniapp-wagmi-connector": "^1.0.0",
"@farcaster/quick-auth": "0.0.7",
"@libsql/client": "^0.15.12",
"@lifi/sdk": "^3.9.3",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-switch": "^1.2.6",
"@reown/appkit": "^1.8.15",
"@reown/appkit-adapter-wagmi": "^1.8.15",
"@t3-oss/env-nextjs": "^0.12.0",
"@tanstack/react-query": "^5.90.12",
"@vercel/analytics": "^1.5.0",
"@wagmi/core": "^2.19.0",
"@zoralabs/coins-sdk": "^0.3.3",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.44.4",
"eruda": "^3.4.3",
"jiti": "1.21.7",
"jose": "^6.0.12",
"ky": "^1.8.2",
"lucide-react": "^0.542.0",
"motion": "^12.23.12",
"next": "16.0.10",
"next-secure-headers": "^2.2.0",
"next-themes": "^0.4.6",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"nuqs": "^2.4.3",
"obscenity": "^0.4.5",
"openai": "^6.3.0",
"ox": "^0.11.0",
"pinata": "^2.5.0",
"pino-pretty": "^13.0.0",
"qrcode.react": "^4.2.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"socket.io-client": "^4.8.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"ulid": "^3.0.1",
"uuid": "^11.1.0",
"viem": "^2.42.1",
"wagmi": "2.17.5",
"xml2js": "^0.6.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@ianvs/prettier-plugin-sort-imports": "^4.6.2",
"@tailwindcss/postcss": "^4",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/xml2js": "^0.4.14",
"dotenv": "^17.2.1",
"drizzle-kit": "^0.31.4",
"eslint": "^9",
"eslint-config-next": "15.5.0",
"eslint-config-prettier": "^10.1.8",
"pagefind": "^1.4.0",
"postcss": "^8",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.7",
"typescript": "^5"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20.18.0",
"pnpm": ">=10.0.0"
},
"pnpm": {
"overrides": {
"@wagmi/connectors": "5.9.4",
"@wagmi/core": "2.19.0",
"wagmi": "2.17.5"
}
}
}