-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 801 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "linkx",
"private": true,
"workspaces": ["frontend"],
"scripts": {
"dev": "bun run --filter frontend dev",
"dev:local": "bash ./scripts/dev-local.sh",
"services:up": "docker compose up -d db redis",
"services:down": "docker compose down",
"build": "bun run --filter frontend build",
"check": "bun run --filter frontend lint && bun run --filter frontend typecheck && cd backend && uv run ruff check app && uv run ruff format --check app && uv run mypy app",
"test": "cd backend && uv run pytest tests/ && bun run --filter frontend test",
"test:ui": "bun run --filter frontend test:ui",
"generate-client": "bun run --filter frontend generate-client",
"lint": "bun run --filter frontend lint",
"verify": "bun run check && bun run test"
}
}