-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "hypaper-backend",
"version": "0.1.0",
"description": "Open-source paper trading backend for HyperLiquid",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GigabrainGG/HyPaper.git"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"test:run": "vitest run",
"bot:btc-hourly-long": "node scripts/btc-hourly-long.mjs",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"test:realtime": "node scripts/test-realtime-endpoints.mjs"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"decimal.js": "^10.4.3",
"drizzle-orm": "^0.45.1",
"hono": "^4.7.4",
"ioredis": "^5.4.2",
"pino": "^9.6.0",
"postgres": "^3.4.8",
"ws": "^8.18.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/ws": "^8.5.14",
"drizzle-kit": "^0.31.9",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}