-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.47 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
48
49
{
"name": "drift-liquidation-bot",
"version": "1.0.0",
"description": "",
"exports": [
"./src/index.ts",
"./src/getUsersLoop.ts",
"./src/single.ts"
],
"type": "module",
"scripts": {
"rebuild": "cd protocol-v1/sdk && yarn && yarn build && cd ../../ && yarn upgrade",
"rebuild-win": "cd protocol-v1/sdk && yarn && yarn build-win && cd ../../ && yarn upgrade",
"start": "node --loader ts-node/esm ./src/index.ts",
"single": "node --loader ts-node/esm ./src/single.ts",
"getUsers": "node --loader ts-node/esm ./src/getUsersLoop.ts",
"liqHistory": "node --no-warnings --loader ts-node/esm ./src/liqHistoryVisualizer.ts",
"tpuTest": "node --loader ts-node/esm ./src/testTpuClient.ts"
},
"author": "",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"license": "ISC",
"dependencies": {
"@drift-labs/sdk": "^0.1.36-master.6",
"@project-serum/anchor": "^0.20.1",
"@pythnetwork/client": "^2.5.1",
"@solana/web3.js": "^1.31.0",
"@types/asciichart": "^1.5.6",
"asciichart": "^1.5.25",
"axios": "^0.24.0",
"body-parser": "^1.19.1",
"bs58": "^4.0.1",
"denque": "^2.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"fs-extra": "^10.0.0",
"node-localstorage": "^2.2.1",
"polling-account-fetcher": "^1.0.7",
"tpu-client": "^1.0.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0"
},
"devDependencies": {
"tslint": "^5.12.1",
"typescript": "^3.9.10"
}
}