-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.32 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "orca-pnl-analysis",
"version": "1.0.0",
"bin": {
"pnl": "dist/index.js"
},
"license": "MIT",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"start": "yarn build && node -r dotenv/config --no-warnings dist/index.js",
"lint": "eslint --ext=jsx,ts,tsx src",
"format": "prettier --config .prettierrc 'src/**/*.{js,jsx,ts,tsx,json}' --write"
},
"dependencies": {
"@coral-xyz/anchor": "~0.27.0",
"@noble/hashes": "^1.3.3",
"@orca-so/common-sdk": "^0.4.0",
"@orca-so/token-sdk": "^0.3.3",
"@orca-so/whirlpools-sdk": "^0.12.2",
"@solana/spl-token": "~0.3.8",
"@solana/web3.js": "^1.90.0",
"axios": "^1.6.7",
"bn.js": "^5.2.1",
"csv": "^6.3.6",
"csv-parse": "^5.5.3",
"csv-stringify": "^6.4.5",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.4",
"lodash": "^4.17.21",
"p-queue": "^6.6.2",
"tiny-invariant": "^1.3.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.17",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"packageManager": "yarn@4.0.2"
}