-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
45
46
47
48
{
"name": "crypto-bot",
"version": "2.5.1",
"description": "Crypto Bot coins/tokens Telegram notifier",
"main": "src/index.js",
"scripts": {
"start": "node .",
"start-fake": "NODE_ENV=fake node .",
"memory": "node --expose-gc --inspect .",
"debug": "node inspect . --debug",
"lint": "eslint src/ --ext .js",
"fix": "eslint src/ --ext .js --fix"
},
"repository": {
"type": "git",
"url": "git@gitlab.melroy.org:melroy/crypto-bot.git"
},
"keywords": [
"crypto",
"exchange",
"bitcoin",
"ethereum",
"cardano",
"chainlink",
"binance",
"coin",
"bot",
"telegram",
"tracker"
],
"author": "Melroy van den Berg <melroy@melroy.org>",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"cron": "^3.1.6",
"express": "^4.18.2",
"fast-csv": "^4.3.6",
"node-telegram-bot-api": "^0.64.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-promise": "^6.1.1"
}
}