-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.05 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
{
"name": "dnd-sol",
"license": "ISC",
"packageManager": "bun@1.2.3",
"version": "0.1.0",
"private": true,
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint:check": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.0",
"@helius-dev/kite": "^1.0.1",
"@hookform/resolvers": "^5.0.1",
"@radix-ui/react-dropdown-menu": "^2.1.12",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-select": "^2.2.2",
"@radix-ui/react-slot": "^1.2.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@solana/kit": "^2.1.0",
"@solana/wallet-adapter-base": "^0.9.26",
"@solana/wallet-adapter-react": "^0.15.38",
"@solana/wallet-adapter-react-ui": "^0.9.38",
"@solana/web3.js": "^1.98.2",
"@switchboard-xyz/on-demand": "^3.7.1",
"bs58": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"idb": "^8.0.2",
"lucide-react": "^0.503.0",
"next": "16.0.1",
"next-themes": "^0.4.6",
"node-gyp": "^12.1.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.56.1",
"shadcn": "^2.5.0",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.184.0",
"zod": "^3.24.3",
"zustand": "^5.0.8"
},
"devDependencies": {
"@switchboard-xyz/cli": "^3.5.12",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^5.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^20",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@types/three": "^0.184.0",
"autoprefixer": "^10.0.1",
"chai": "^4.3.4",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"mocha": "^9.0.3",
"postcss": "^8",
"prettier": "^2.6.2",
"tailwindcss": "^3.3.0",
"ts-mocha": "^10.0.0",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}