-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1021 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1021 Bytes
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
{
"name": "solana-rwa-backend",
"version": "0.1.0",
"private": true,
"description": "Backend API for Solana RWA tokenization, NFTs, trading, and on-chain program interaction",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@metaplex-foundation/mpl-toolbox": "^0.10.0",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/umi": "^0.9.2",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.2",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.95.8",
"bs58": "^6.0.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}