-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 809 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 809 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
{
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"ts-node": "set ANCHOR_WALLET=./id.json && ts-node ./cli/command.ts",
"ts-check": "ts-node ./tests/anchor.ts"
},
"dependencies": {
"@coral-xyz/anchor": "0.29.0",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.3.9",
"@solana/web3.js": "1.78.4",
"assert": "*",
"base58": "^2.0.1",
"bn.js": "*",
"commander": "^11.1.0",
"dotenv": "^16.3.2",
"loglevel": "^1.8.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.8",
"mocha": "^10.2.0",
"prettier": "^3.0.2",
"ts-mocha": "^10.0.0",
"typescript": "^5.2.2"
}
}