-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.66 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.66 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
{
"name": "@port/liquidator",
"version": "0.0.1",
"description": "Library for interacting with Port Finance Variable Lending Protocol",
"scripts": {
"build": "esbuild src/liquidator.ts --bundle --platform=node --outfile=dist/liquidator.cjs --format=cjs --target=node18",
"start:dev": "NODE_ENV=production pnpm build && node dist/liquidator.cjs | pino-pretty",
"start": "NODE_ENV=production pnpm build && node dist/liquidator.cjs",
"lint": "eslint src/**.ts --fix && prettier --write 'src/**/*.ts'",
"lint:ci": "eslint src/**.ts --max-warnings=0 && prettier -c '{tests,src}/**/*.ts'"
},
"devDependencies": {
"@types/big.js": "^6.1.2",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"esbuild": "^0.17.10",
"eslint": "^8.1.0",
"eslint-config-prettier": "^6.11.0",
"pino-pretty": "^9.4.0",
"prettier": "^2.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@jup-ag/core": "4.0.0-beta.18",
"@port.finance/port-sdk": "^0.2.69",
"@project-serum/anchor": "0.24.2",
"@project-serum/serum": "^0.13.41",
"@pythnetwork/client": "^2.2.0",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "0.1.8",
"@solana/web3.js": "1.73.3",
"@switchboard-xyz/solana.js": "^2.0.127",
"@switchboard-xyz/switchboard-api": "^0.2.154",
"big.js": "^6.1.1",
"bn.js": "5.2.1",
"bs58": "^5.0.0",
"buffer-layout": "^1.2.1",
"jsbi": "^4.3.0",
"slack-block-builder": "^2.7.2",
"winston": "^3.8.2",
"winston-transport": "^4.5.0"
},
"author": "Port Finance Team",
"license": "Apache 2.0"
}