forked from lukeliasi/binance-dca-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 799 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
34
35
{
"name": "binance-dca-bot",
"version": "2.0.0",
"description": "A bot to automatically DCA (Dollar-Cost Average) buy cryptocurrency on Binance",
"main": "src/bot.js",
"type": "module",
"author": "Luke Liasi <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lukeliasi/binance-dca-bot.git"
},
"scripts": {
"start": "node src/bot.js"
},
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"colors": "^1.4.0",
"cronstrue": "^1.112.0",
"dotenv": "^10.0.0",
"mongodb": "^4.1.3",
"node-fetch": "^2.6.1",
"node-schedule": "^2.0.0"
},
"keywords": [
"crypto",
"bitcoin",
"ethereum",
"cryptocurrency",
"dca",
"binance",
"dollar-cost-averaging",
"binance-api"
]
}