-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.95 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
{
"name": "invaders.new.frame",
"version": "0.1.0",
"type": "module",
"private": false,
"access": "public",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./bin/init.js"
}
},
"types": "./index.d.ts",
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"build:check": "next build --no-lint",
"start": "next start",
"lint": "next lint",
"deploy:vercel": "node scripts/deploy.js",
"prepare": "husky",
"pre-commit": "npm run lint && npm run build:check"
},
"dependencies": {
"@farcaster/auth-client": ">=0.3.0 <1.0.0",
"@farcaster/auth-kit": ">=0.6.0 <1.0.0",
"@farcaster/frame-core": ">=0.0.29 <1.0.0",
"@farcaster/frame-node": ">=0.0.18 <1.0.0",
"@farcaster/frame-sdk": ">=0.0.31 <1.0.0",
"@farcaster/frame-wagmi-connector": ">=0.0.19 <1.0.0",
"@farcaster/hub-nodejs": "^0.13.4",
"@neynar/nodejs-sdk": "^2.19.0",
"@radix-ui/react-label": "^2.1.1",
"@tanstack/react-query": "^5.90.21",
"@types/leaflet": "^1.9.20",
"@upstash/redis": "^1.34.3",
"axios": "^1.13.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"leaflet": "^1.9.4",
"lucide-react": "^0.577.0",
"mipd": "^0.0.7",
"next": "^15.5.12",
"next-auth": "^4.24.13",
"qrcode.react": "^4.2.0",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.6.0",
"react-leaflet": "^4.2.1",
"redis": "^5.11.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.47.1",
"wagmi": "^2.14.12",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"crypto": "^1.0.1",
"eslint": "^8",
"eslint-config-next": "^15.5.7",
"husky": "^9.1.7",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.1",
"typescript": "^5.9.3"
}
}