This repository was archived by the owner on May 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.51 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": "timeless-heroes",
"version": "1.0.0",
"private": true,
"description": "Dev-Idle Terminal Game Backend - NestJS/BullMQ/Redis Architecture",
"author": "Timeless-Heroes Team",
"license": "MIT",
"scripts": {
"dev": "turbo run dev",
"dev:gateway": "turbo run dev --filter=@app/api-gateway",
"dev:progression": "turbo run dev --filter=@app/svc-user-progression",
"dev:worker": "turbo run dev --filter=@app/worker-game-loop",
"dev:payment": "turbo run dev --filter=@app/svc-payment",
"build": "turbo run build",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:generate": "pnpm -F @repo/prisma-client generate",
"db:migrate": "pnpm -F @repo/prisma-client migrate:dev",
"db:push": "pnpm -F @repo/prisma-client db:push",
"db:studio": "pnpm -F @repo/prisma-client studio",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"infra:up": "docker-compose up -d postgres redis",
"infra:down": "docker-compose down postgres redis",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.4",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"husky": "^9.1.7",
"prettier": "^3.2.5",
"turbo": "^2.8.1"
},
"packageManager": "pnpm@8.15.5",
"engines": {
"node": ">=18"
}
}