-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.36 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
{
"name": "arbitrage-bot",
"version": "0.0.1",
"description": "Arbitrage Bot",
"scripts": {
"format": "yarn prettier . --write --ignore-path .prettierignore",
"lint": "yarn eslint --ignore-path .eslintignore --ext .js,.ts",
"build": "yarn rimraf dist && tsc",
"start": "node dist/index.js"
},
"license": "MIT",
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/eslint": "^8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"gts": "^3.1.1",
"prettier": "3.2.5",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.4.4",
"typescript-eslint": "^7.5.0"
},
"dependencies": {
"@binance/connector-typescript": "^0.3.6",
"@cetusprotocol/cetus-sui-clmm-sdk": "^3.17.10",
"@mysten/sui.js": "^0.51.0",
"@ramm/ramm-sui-sdk": "0.0.6",
"@thanpolas/univ3prices": "^3.0.2",
"@types/uuid": "^9.0.8",
"axios": "^1.4.0",
"ccxt": "^3.1.52",
"dotenv": "^16.1.4",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"simple-statistics": "^7.8.3",
"ts-md5": "^1.3.1",
"websocket-ts": "^1.1.1",
"ws": "^8.13",
"wscat": "^5.2.0"
},
"packageManager": "[email protected]"
}