-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.34 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
{
"name": "clawstack",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:auth": "jest --testPathPatterns=lib/auth",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@coinbase/agentkit": "^0.10.4",
"@playwright/test": "^1.58.1",
"@privy-io/node": "^0.8.0",
"@privy-io/react-auth": "^3.13.1",
"@radix-ui/react-slot": "^1.2.4",
"@solana-program/memo": "^0.10.0",
"@solana/kit": "^5.5.1",
"@solana/spl-token": "^0.4.14",
"@solana/wallet-adapter-base": "^0.9.27",
"@solana/wallet-adapter-react": "^0.15.39",
"@solana/wallet-adapter-react-ui": "^0.9.39",
"@solana/wallet-adapter-wallets": "^0.19.37",
"@solana/web3.js": "^1.98.4",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.94.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.20",
"@types/bcryptjs": "^2.4.6",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.2",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jose": "^6.1.3",
"lucide-react": "^0.563.0",
"next": "^16.1.6",
"qrcode.react": "^4.2.0",
"react": "^18",
"react-dom": "^18",
"sanitize-html": "^2.17.0",
"slugify": "^1.6.6",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.45.1",
"wagmi": "^3.4.2",
"zod": "^3.24.1"
},
"overrides": {
"@types/react": "^18",
"@types/react-dom": "^18",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/sanitize-html": "^2.16.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"jest": "^30.2.0",
"jest-environment-node": "^30.2.0",
"postcss": "^8",
"prettier": "^3.5.3",
"supabase": "^2.75.1",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.4.6",
"typescript": "^5",
"typescript-eslint": "^8.54.0"
}
}