forked from talentprotocol/creator-score-miniapp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.3 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.3 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
{
"name": "base200-miniapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo --port 3002",
"build": "NEXT_PUBLIC_BUILD_DATE=$(date -u +%Y-%m-%d) next build",
"start": "next start",
"lint": "next lint",
"postinstall": "patch-package",
"version:patch": "node scripts/version-bump.js patch",
"version:minor": "node scripts/version-bump.js minor",
"version:major": "node scripts/version-bump.js major"
},
"dependencies": {
"@coinbase/onchainkit": "latest",
"@farcaster/frame-sdk": "^0.0.35",
"@farcaster/miniapp-sdk": "^0.1.8",
"@neynar/nodejs-sdk": "^2.44.0",
"@privy-io/react-auth": "^2.20.0",
"@privy-io/server-auth": "^1.28.8",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-visually-hidden": "^1.2.3",
"@shadcn/ui": "^0.0.4",
"@supabase/supabase-js": "^2.52.0",
"@tanstack/react-query": "^5",
"@types/canvas-confetti": "^1.9.0",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"geist": "^1.4.2",
"lucide-react": "^0.511.0",
"next": "^14.2.15",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"posthog-js": "^1.257.2",
"posthog-node": "^5.6.0",
"react": "^18",
"react-dom": "^18",
"react-swipeable": "^7.0.2",
"tailwind-merge": "^3.3.0",
"vaul": "^1.1.2",
"viem": "^2.27.2",
"wagmi": "^2.14.11"
},
"devDependencies": {
"@types/node": "^20",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18",
"@types/react-dom": "^18",
"ajv": "^8.12.0",
"ajv-keywords": "^5.1.0",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"patch-package": "^8.0.0",
"postcss": "^8",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}