This repository was archived by the owner on Apr 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.94 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.94 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
{
"name": "solana-dapp-next",
"version": "0.1.0",
"license": "MIT",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"analyze": "ANALYZE=true pnpm build"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@floating-ui/react": "^0.26.12",
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.1.3",
"@irys/sdk": "^0.0.4",
"@metaplex-foundation/js": "^0.20.1",
"@metaplex-foundation/mpl-token-metadata": "^2.13.0",
"@popperjs/core": "^2.11.6",
"@project-serum/anchor": "^0.26.0",
"@solana/buffer-layout": "^4.0.1",
"@solana/spl-token-next": "npm:@solana/spl-token@^0.3.9",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-ledger": "^0.9.22",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.27",
"@solana/web3.js": "^1.91.7",
"@tanstack/react-query": "^5.29.2",
"@tanstack/react-query-devtools": "^5.29.2",
"@tanstack/react-virtual": "^3.4.0",
"@vercel/analytics": "^0.1.5",
"bignumber.js": "^9.1.0",
"bn.js": "^5.2.1",
"bs58": "4.0.1",
"clsx": "^2.1.0",
"dayjs": "^1.11.5",
"decimal.js": "^10.4.3",
"next": "14.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.36.1",
"react-hot-toast": "^2.4.0",
"tailwind-merge": "^2.3.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@types/bn.js": "^5.1.5",
"@types/bs58": "^4.0.1",
"@types/node": "^18.7.23",
"@types/react": "^18.2.79",
"arweave": "^1.15.0",
"autoprefixer": "^10.4.19",
"csstype": "^3.1.3",
"eslint": "8.7.0",
"eslint-config-next": "14.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
}
}