-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (20 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (20 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "segment-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node scripts/dev.js",
"dev:backend": "node scripts/dev.js --backend-only",
"dev:frontend": "npm --prefix frontend run dev",
"build": "npm --prefix frontend run build && npm --prefix backend run build:check",
"build:frontend": "npm --prefix frontend run build",
"build:backend": "echo \"(backend is interpreted; nothing to build) uv sync --no-dev to install prod deps\"",
"start": "node scripts/start.js",
"start:backend": "node scripts/start.js --backend-only",
"start:frontend": "npm --prefix frontend run start",
"lint": "npm --prefix frontend run lint && cd backend && uv run ruff check app/ tests/ && uv run mypy app/",
"typecheck": "npm --prefix frontend run typecheck",
"test": "cd backend && uv run pytest",
"test:frontend": "npm --prefix frontend run test"
}
}