-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.79 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "zillions",
"version": "1.0.0",
"description": "Professional-grade, scalable, and modular trading bot engine SDK.",
"main": "dist/index.sdk.js",
"types": "dist/index.sdk.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"public"
],
"scripts": {
"start": "ts-node src/main.ts",
"dev": "nodemon --watch src src/main.ts",
"backtest": "ts-node src/backtest/runner.ts",
"backtest:compare": "ts-node src/backtest/comparison.runner.ts",
"replay": "ts-node scripts/replay.ts",
"api": "ts-node src/api/server.ts",
"migrate:data": "ts-node scripts/data.migrate.ts",
"migrate:replay": "ts-node scripts/migrate_replay.ts",
"cleanup": "ts-node scripts/cleanup.ts",
"close:trades": "ts-node scripts/close_trades.ts",
"open:long": "ts-node scripts/manual_trade.ts --side=BUY",
"open:short": "ts-node scripts/manual_trade.ts --side=SELL",
"open:trade": "ts-node scripts/manual_trade.ts",
"pnl:total": "ts-node scripts/total_pnl.ts",
"stresstest": "ts-node scripts/stresstest_calculations.ts",
"build": "tsc",
"build:sdk": "tsc --project tsconfig.sdk.json",
"test": "jest"
},
"keywords": [],
"author": "@christonomous",
"license": "Apache-2.0",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/supertest": "^6.0.3",
"@vercel/node": "^5.5.16",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@supabase/supabase-js": "^2.89.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"indicatorts": "^2.2.2",
"winston": "^3.19.0",
"zod": "^4.2.1"
}
}