-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 780 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 780 Bytes
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
{
"name": "beaver-market-bot",
"version": "1.0.0",
"description": "Beaver Market Bot - Telegram bot for market crash monitoring and analysis",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest"
},
"keywords": [
"telegram",
"bot",
"market",
"trading",
"analysis"
],
"author": "",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"axios": "^1.6.8",
"dotenv": "^16.4.5",
"moment": "^2.30.1",
"node-cron": "^3.0.3",
"quickchart-js": "^3.1.3",
"sqlite3": "^5.1.6",
"telegraf": "^4.16.3",
"winston": "^3.13.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.0"
}
}