-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 945 Bytes
/
package.json
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
{
"name": "solana-course-client",
"version": "1.0.0",
"description": "Starter template for a Solana client script",
"main": "index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"test": "ts-mocha -p tsconfig.json -t 1000000 ./src/test.ts"
},
"keywords": [],
"author": "test",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@metaplex-foundation/js": "^0.19.4",
"@metaplex-foundation/mpl-bubblegum": "^0.7.0",
"@metaplex-foundation/mpl-token-metadata": "^2.11.1",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-account-compression": "^0.1.8",
"@solana/spl-token": "^0.3.6",
"@solana/web3.js": "^1.78.4",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"dotenv": "^16.0.1",
"node-fetch": "^2.6.11"
}
}