-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.55 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.55 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
84
{
"name": "template-next-tailwind-counter",
"version": "0.1.0",
"private": true,
"scripts": {
"anchor": "cd anchor && anchor",
"anchor-build": "cd anchor && anchor build",
"anchor-localnet": "cd anchor && anchor localnet",
"anchor-test": "cd anchor && anchor test",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@coral-xyz/anchor": "0.31.0",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-toggle": "^1.1.2",
"@radix-ui/react-toggle-group": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.8",
"@solana/spl-token": "0.4.9",
"@solana/wallet-adapter-base": "0.9.23",
"@solana/wallet-adapter-react": "0.15.35",
"@solana/wallet-adapter-react-ui": "0.9.35",
"@solana/wallet-adapter-wallets": "^0.19.33",
"@solana/web3.js": "1.98.0",
"@tabler/icons-react": "^3.11.0",
"@tanstack/react-query": "^5.51.11",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-query-next-experimental": "^5.51.11",
"@vercel/analytics": "^1.5.0",
"anchor-bankrun": "^0.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.4.2",
"jotai": "^2.9.1",
"lucide-react": "^0.475.0",
"next": "14.2.5",
"next-themes": "^0.4.4",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.4.0",
"react-intersection-observer": "^9.15.1",
"react-qr-code": "^2.0.15",
"react-qrcode-pretty": "^1.3.3",
"recharts": "^2.15.1",
"short-uuid": "^5.2.0",
"solana-bankrun": "^0.4.0",
"spl-token-bankrun": "0.2.5",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.23",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"jest": "^29.0.3",
"pino-pretty": "^13.0.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.0.2",
"typescript": "^5"
},
"jest": {
"testMatch": [
"<rootDir>/anchor/tests/soljar.spec.ts"
]
}
}