-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.44 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.44 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": "payment-gateway",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"inngest": "npx inngest-cli@latest dev"
},
"dependencies": {
"@circle-fin/adapter-viem-v2": "^1.4.0",
"@circle-fin/bridge-kit": "^1.5.0",
"@defuse-protocol/intents-sdk": "^0.51.0",
"@defuse-protocol/one-click-sdk-typescript": "^0.1.15",
"@fluidkey/stealth-account-kit": "^1.1.1",
"@hookform/resolvers": "^5.2.2",
"@lifi/sdk": "^3.15.4",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@react-pdf/renderer": "^4.3.2",
"@react-three/fiber": "^9.5.0",
"@react-three/postprocessing": "^3.0.4",
"@reown/appkit": "^1.8.18",
"@reown/appkit-adapter-solana": "^1.8.18",
"@reown/appkit-adapter-wagmi": "^1.8.18",
"@sentry/nextjs": "^10.38.0",
"@solana/spl-token": "^0.4.14",
"@solana/wallet-adapter-wallets": "^0.19.37",
"@solana/web3.js": "^1.98.4",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.93.3",
"@tanstack/react-query": "^5.90.20",
"@types/three": "^0.182.0",
"@upstash/redis": "^1.36.1",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotted-map": "^2.2.3",
"framer-motion": "^12.34.0",
"inngest": "^3.50.0",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"posthog-js": "^1.336.4",
"postprocessing": "^6.38.2",
"radix-ui": "^1.4.3",
"rango-sdk-basic": "^0.1.72",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.71.1",
"react-qr-code": "^2.0.18",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.167.1",
"viem": "^2.46.3",
"wagmi": "^2.19.5",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"shadcn": "^3.8.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.1.2"
}
}