-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.14 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.14 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
{
"name": "@mrgnlabs/scripts",
"version": "0.0.1",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"tools": "tsx lib/list-tools.ts",
"accounts:get-account-health": "tsx accounts/get-account-health.ts",
"accounts:get": "tsx accounts/get-account.ts",
"accounts:get-all": "tsx accounts/get-accounts-by-wallet.ts",
"accounts:find-users": "tsx accounts/find-users.ts",
"accounts:cache": "tsx accounts/cache-accounts.ts",
"banks:get": "tsx banks/get-bank.ts",
"banks:get-all": "tsx banks/get-banks.ts",
"banks:get-accounts": "tsx banks/get-bank-accounts.ts",
"activity:get": "tsx activity/get.ts",
"activity:cache": "tsx activity/cache-activity.ts",
"activity:report": "tsx activity/report.ts",
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.0",
"@coral-xyz/spl-token": "^0.30.1",
"@mrgnlabs/marginfi-client-v2": "6.1.4",
"@mrgnlabs/mrgn-common": "2.0.3",
"@solana/spl-single-pool-classic": "^1.0.2",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.2",
"@switchboard-xyz/common": "^5.7.0",
"@switchboard-xyz/on-demand": "^3.9.0",
"bignumber.js": "^9.1.2",
"borsh": "^2.0.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.7",
"firebase-admin": "^11.9.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"node-fetch": "^2.7.0",
"puppeteer-core": "^24.32.1",
"ts-mocha": "^10.0.0",
"tsx": "^4.19.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@mrgnlabs/tsconfig": "0.0.1",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^24.2.0",
"@types/node-fetch": "^2.6.13",
"big.js": "^6.2.1",
"chai": "^4.3.4",
"ts-node": "^10.9.1",
"typescript": "^4.3.5"
},
"resolutions": {
"chalk": "5.3.0",
"strip-ansi": "7.1.0",
"color-convert": "2.0.1",
"color-name": "1.1.4",
"is-core-module": "2.13.1",
"error-ex": "1.3.2",
"simple-swizzle": "0.2.2",
"has-ansi": "5.0.1"
}
}