-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.33 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.33 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "crypto-trading-bot",
"version": "0.1.0",
"author": "Daniel Espendiller",
"bugs": "https://github.com/Haehnchen/crypto-trading-bot/issues",
"contributors": [
{
"email": "daniel@espendiller.net",
"name": "Daniel Espendiller",
"url": "http://espend.de/"
}
],
"bin": {
"crypto-bot": "dist/index.js"
},
"dependencies": {
"basic-auth": "^2.0.1",
"better-sqlite3": "12.6.2",
"ccxt": "^4.5.38",
"commander": "^14.0.3",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"ejs": "^4.0.1",
"express": "5.2.1",
"express-ejs-layouts": "^2.5.1",
"flat-cache": "^6.1.20",
"moment": "^2.30.1",
"nodemailer": "^8.0.1",
"queue-promise": "^2.2.1",
"sendmail": "^1.6.1",
"talib": "^2.0.3",
"technicalindicators": "^3.1.0",
"telegraf": "^4.16.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"winston": "^3.19.0",
"tslib": "^2.8.1"
},
"engines": {
"node": ">=22.0"
},
"keywords": [
"cryptocurrency",
"crypto",
"exchange",
"trading",
"trading-bot",
"trading-strategies",
"websocket",
"nodejs",
"bitfinex",
"bitmex",
"binance",
"tradingview",
"bot",
"javascript"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Haehnchen/crypto-trading-bot.git"
},
"scripts": {
"start": "npm run build:prod && node dist/index.js trade",
"start:dev": "ts-node index.ts trade",
"start:watch": "ts-node --watch index.ts trade",
"test": "mocha --require ts-node/register 'test/**/*.test.ts'",
"test:js": "mocha 'test/**/*.test.js'",
"build": "node esbuild.config.mjs",
"build:tsc": "tsc",
"build:prod": "node esbuild.config.mjs --prod",
"build:watch": "node esbuild.config.mjs --watch",
"setup": "pm2 deploy ecosystem.config.js production setup",
"deploy": "pm2 deploy ecosystem.config.js production"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/request": "^2.48.13",
"esbuild": "^0.27.3",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"mocha": "^11.7.5",
"prettier": "^3.5.3",
"ts-mockito": "^2.6.1",
"typescript-eslint": "^8.29.0"
}
}