forked from mooncitydev/asterdex-hl-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.24 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.24 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
{
"name": "aster-hl-trading-bot",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run index.ts",
"start": "bun run index.ts",
"test": "bun x vitest run",
"test:watch": "bun x vitest",
"start:trend:silent": "bun run index.ts --strategy trend --silent",
"start:maker:silent": "bun run index.ts --strategy maker --silent",
"start:offset:silent": "bun run index.ts --strategy offset-maker --silent",
"pm2:start:trend": "pm2 start bun --name aster-hl-trend --cwd . --restart-delay 5000 -- run index.ts --strategy trend --silent",
"pm2:start:maker": "pm2 start bun --name aster-hl-maker --cwd . --restart-delay 5000 -- run index.ts --strategy maker --silent",
"pm2:start:offset": "pm2 start bun --name aster-hl-offset --cwd . --restart-delay 5000 -- run index.ts --strategy offset-maker --silent"
},
"devDependencies": {
"@types/bun": "latest",
"vitest": "^3.2.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@grvt/client": "^1.6.4",
"axios": "^1.12.2",
"ccxt": "^4.5.5",
"dotenv": "^17.2.2",
"ethereum-cryptography": "^2.1.3",
"ethers": "^6.13.4",
"ink": "^6.3.1",
"react": "^19.1.1",
"ws": "^8.18.3"
}
}