-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (83 loc) · 2.45 KB
/
package.json
File metadata and controls
84 lines (83 loc) · 2.45 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": "my-project",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS='--max-old-space-size=8192' next dev",
"build": "next build",
"start": "cross-env NODE_OPTIONS='--max-old-space-size=8192' next start -p 3001",
"lint": "next lint",
"test": "ts-node test.mts"
},
"engines": {
"node": ">=20.18.0"
},
"dependencies": {
"@coral-xyz/anchor": "0.30.1",
"@coral-xyz/borsh": "0.30.1",
"@heroui/react": "2.8.4",
"@mercurial-finance/dynamic-amm-sdk": "^1.1.19",
"@metaplex-foundation/mpl-token-auth-rules": "^3.0.3",
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
"@metaplex-foundation/umi": "^1.0.0",
"@project-serum/anchor": "0.25.0",
"@raydium-io/raydium-sdk": "1.3.1-beta.51",
"@raydium-io/raydium-sdk-v2": "^0.1.70-alpha",
"@solana-developers/helpers": "2.4.0",
"@solana-program/memo": "0.7.0",
"@solana/spl-token": "0.4.9",
"@solana/spl-token-group": "0.0.7",
"@solana/wallet-adapter-base": "^0.9.17",
"@solana/wallet-adapter-react": "^0.15.19",
"@solana/wallet-adapter-react-ui": "^0.9.17",
"@solana/wallet-adapter-wallets": "^0.19.0",
"@solana/web3.js": "^1.95.4",
"@triton-one/yellowstone-grpc": "1.4.1",
"@types/formidable": "^3.4.5",
"axios": "^1.7.2",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"cross-env": "^10.1.0",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"decimal.js": "^10.5.0",
"formidable": "^3.5.1",
"immer": "^10.1.1",
"jito-ts": "^4.0.1",
"mongodb": "^6.20.0",
"mongoose": "^8.19.1",
"next": "14.2.3",
"nextjs-toploader": "^3.7.15",
"p-map": "^7.0.3",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.5.0",
"react-images-uploading": "^3.1.7",
"react-pro-sidebar": "^1.1.0",
"react-toastify": "^10.0.5",
"uuid": "^10.0.0",
"react-ts-tradingview-widgets": "^1.2.8",
"redis": "^5.8.3",
"simplebar-react": "^3.2.5",
"zustand": "4.1.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.14.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"babar": "^0.2.3",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8.4.38",
"tailwindcss": "3.4.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"overrides": {
"@solana/web3.js": "^1.95.4"
}
}