-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "deepseek-trading-bot",
"version": "1.0.0",
"description": "DeepSeek AI-powered crypto trading bot with 24/7 operation",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/combined-server.js",
"dev": "node --watch src/index.js",
"test": "node src/test.js",
"test-trading": "node test-trading.js",
"test-rolling": "node test-rolling-window.js",
"test-indicators": "node test-indicators.js",
"setup": "node setup.js",
"setup-db": "node setup-database.js",
"setup-postgres": "node setup-postgres.js",
"trade": "node src/scheduler/loop.js",
"api": "node src/api/server.js"
},
"keywords": [
"trading",
"crypto",
"ai",
"deepseek",
"bot"
],
"author": "Trading Bot",
"license": "MIT",
"dependencies": {
"asterdex-client": "^1.0.0",
"axios": "^1.6.0",
"chart.js": "^4.5.1",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"marked": "^16.4.1",
"node-cron": "^3.0.3",
"openai": "^4.20.0",
"pg": "^8.11.3",
"react-chartjs-2": "^5.3.1",
"supertest": "^6.3.3",
"technicalindicators": "^3.1.0",
"ws": "^8.14.2"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}