-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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": "crypto-signals-tg-bot",
"version": "0.1.0",
"description": "A bot for Telegram based on a neural network that displays signals for the purchase/sale of cryptocurrency.",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development nodemon ./.build/index --watch ./.build --delay 3",
"prod": "NODE_ENV=production node ./build/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArtReeX/crypto-signals-tg-bot.git"
},
"keywords": [
"telegram",
"tensorflow",
"cryptocurrency",
"bot",
"typescript",
"node",
"signals"
],
"author": "Arthur Lazarenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArtReeX/crypto-signals-tg-bot/issues"
},
"homepage": "https://github.com/ArtReeX/crypto-signals-tg-bot#readme",
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node-telegram-bot-api": "^0.40.1",
"nodemon": "^2.0.2",
"typescript": "^3.7.4"
},
"dependencies": {
"@tensorflow/tfjs-node": "^1.5.1",
"binance-api-node": "^0.9.12",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-telegram-bot-api": "^0.40.0",
"technicalindicators": "^3.0.0"
}
}