-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 856 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 856 Bytes
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
{
"name": "stillyou",
"version": "0.1.0",
"private": true,
"description": "Still You — community platform: Telegram Mini App + bot",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"infra:up": "docker compose up -d postgres redis",
"infra:down": "docker compose down",
"infra:logs": "docker compose logs -f",
"build:shared": "npm run build -w @stillyou/shared",
"build": "npm run build:shared && npm run build -w @stillyou/api",
"dev:api": "npm run start:dev -w @stillyou/api",
"dev:miniapp": "npm run dev -w @stillyou/miniapp",
"db:migrate": "npm run db:migrate -w @stillyou/api",
"db:generate": "npm run db:generate -w @stillyou/api",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present"
},
"engines": {
"node": ">=20"
}
}