-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.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
{
"name": "export-escrow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"verify:multisig": "tsx scripts/verify-multisig.ts",
"verify:kirapay-fundin": "tsx scripts/verify-kirapay-fundin.ts",
"verify:kirapay-fundin:mock": "tsx scripts/verify-kirapay-fundin.ts --mock"
},
"dependencies": {
"@privy-io/react-auth": "^3.23.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.38",
"@solana/web3.js": "^1.98.4",
"@supabase/supabase-js": "^2.105.4",
"bs58": "^6.0.0",
"date-fns": "^4.1.0",
"lucide-react": "^0.460.0",
"next": "^16.2.6",
"pinata-web3": "^0.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"swr": "^2.3.6",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"eslint-config-next": "^16.2.6",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.0"
}
}