forked from bernieweb3/surge
-
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) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.68 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
{
"name": "surge",
"version": "0.0.1",
"private": true,
"description": "Surge — Vol-Arb Sentinel + Surface Studio for DeepBook Predict on Sui",
"license": "Apache-2.0",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"start": "npx concurrently --names \"ingestion,keeper,dashboard\" --prefix-colors \"blue,green,cyan\" \"pnpm --filter @surge/ingestion run start\" \"pnpm --filter @surge/keeper run start\" \"pnpm --filter @surge/dashboard run start\"",
"start:headless": "npx concurrently --names \"ingestion,keeper\" --prefix-colors \"blue,green\" \"pnpm --filter @surge/ingestion run start\" \"pnpm --filter @surge/keeper run start\"",
"build": "pnpm -r --filter './packages/*' --filter './apps/*' run build",
"dev:ingestion": "pnpm --filter @surge/ingestion run dev",
"dev:keeper": "pnpm --filter @surge/keeper run dev",
"dev:dashboard": "pnpm --filter @surge/dashboard run dev",
"validate:schema": "tsx --env-file=.env scripts/validate-schema.ts",
"bot:info": "tsx --env-file=.env scripts/bot-info.ts",
"bot:balances": "tsx --env-file=.env scripts/check-balances.ts",
"bot:bootstrap": "tsx --env-file=.env scripts/bootstrap-manager.ts",
"bot:inspect": "tsx --env-file=.env scripts/inspect-manager.ts",
"bot:setup-margin": "tsx --env-file=.env scripts/setup-margin.ts",
"smoke:trade": "tsx --env-file=.env scripts/smoke-trade.ts",
"lint": "pnpm -r run lint",
"typecheck": "pnpm -r run typecheck",
"test": "pnpm -r run test"
},
"devDependencies": {
"@types/node": "^22.5.0",
"concurrently": "^9.1.0",
"tsx": "^4.20.0",
"typescript": "^5.6.0"
}
}