-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 3.12 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 3.12 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
60
61
62
{
"name": "crypto-hack",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev:auction-engine": "SERVICE_NAME=auction-engine HTTP_PORT=4001 tsx watch src/services/auction-engine/index.ts",
"dev:ledger": "SERVICE_NAME=ledger HTTP_PORT=4002 tsx watch src/services/ledger/index.ts",
"dev:crypto-gateway": "SERVICE_NAME=crypto-gateway HTTP_PORT=4003 tsx watch src/services/crypto-gateway/index.ts",
"dev:signer": "SERVICE_NAME=signer HTTP_PORT=4007 tsx watch src/services/signer/index.ts",
"dev:bot": "SERVICE_NAME=bot HTTP_PORT=4004 tsx watch src/services/bot/index.ts",
"dev:web": "SERVICE_NAME=web HTTP_PORT=4005 tsx watch src/services/web/index.ts",
"dev:workers": "SERVICE_NAME=workers HTTP_PORT=4006 tsx watch src/services/workers/index.ts",
"dev:mock-rpc": "SERVICE_NAME=mock-rpc HTTP_PORT=9000 tsx watch src/services/mock-rpc/index.ts",
"dev:observer": "SERVICE_NAME=observer HTTP_PORT=9000 tsx watch src/services/observer/index.ts",
"build": "tsc -p tsconfig.json",
"start:auction-engine": "node dist/src/services/auction-engine/index.js",
"start:ledger": "node dist/src/services/ledger/index.js",
"start:crypto-gateway": "node dist/src/services/crypto-gateway/index.js",
"start:signer": "node dist/src/services/signer/index.js",
"start:bot": "node dist/src/services/bot/index.js",
"start:web": "node dist/src/services/web/index.js",
"start:workers": "node dist/src/services/workers/index.js",
"start:mock-rpc": "node dist/src/services/mock-rpc/index.js",
"start:all": "npm run build && concurrently \"npm:start:auction-engine\" \"npm:start:ledger\" \"npm:start:crypto-gateway\" \"npm:start:web\" \"npm:start:workers\"",
"test": "vitest run",
"test:watch": "vitest",
"load:bot": "node scripts/load/bot-sim.js",
"load:stress": "node scripts/load/stress-bids.js",
"load:anti-sniping": "node scripts/load/anti-sniping.js",
"load:reconcile": "node scripts/load/reconcile.js",
"load:all": "node scripts/load/suite.js",
"load:perf": "node scripts/load/perf-cli.js",
"test:rpc": "tsx scripts/test-rpc.ts",
"test:ton-rpc": "tsx scripts/test-ton-rpc.ts",
"sdk:generate": "tsx scripts/generate-sdk.ts",
"sdk:build": "cd sdk && npm install && npm run build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"dev:all": "concurrently -n observer,auction-engine,ledger,crypto-gateway,signer,workers,web -c blue,green,yellow,magenta,cyan,white,red \"npm:dev:observer\" \"npm:dev:auction-engine\" \"npm:dev:ledger\" \"npm:dev:crypto-gateway\" \"npm:dev:signer\" \"npm:dev:workers\" \"npm:dev:web\""
},
"dependencies": {
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.4",
"@fastify/websocket": "^11.2.0",
"fastify": "^5.6.2",
"ioredis": "^5.3.2",
"mongodb": "^7.0.0",
"pino": "^10.1.1",
"prom-client": "^15.1.3",
"undici": "^6.23.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^25.0.7",
"concurrently": "^8.2.2",
"tsx": "^4.7.0",
"typescript": "^5.4.2",
"vitest": "^4.0.17"
}
}