-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 862 Bytes
/
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
{
"name": "telegram-bot",
"module": "main.ts",
"type": "module",
"scripts": {
"start": "bun ./src/main.ts",
"lint": "bunx oxlint && tsc ",
"runTrade": "bun ./src/runTrade.ts",
"runBacktest": "bun ./src/runBacktest.ts",
"runServer": "bun ./src/runServer.ts",
"showTradeLogs": "bun ./src/showTradeLogs.ts",
"flushLogs": "bun ./src/flushLogs.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/big.js": "^6.2.2",
"@types/cli-progress": "^3.11.5",
"@types/node-cron": "^3.0.11",
"axios": "^1.6.8",
"big.js": "^6.2.1",
"binance-api-node": "^0.12.7",
"cli-progress": "^3.12.0",
"firebase": "^11.1.0",
"node-binance-api": "^0.13.1",
"node-cron": "^3.0.3",
"technicalindicators": "^3.1.0"
}
}