-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 985 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 985 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
27
28
29
30
31
32
33
34
35
{
"name": "digital-card-platform",
"version": "0.1.0",
"private": true,
"workspaces": [
"client"
],
"scripts": {
"dev": "npm run dev -w client",
"server:dev": "cd server && uv run fastapi dev app/main.py --host 0.0.0.0 --port 4000",
"server:migrate": "cd server && uv run alembic upgrade head",
"server:seed": "cd server && uv run python -m app.seed",
"server:test": "cd server && uv run pytest",
"server:lint": "cd server && uv run ruff check .",
"build": "npm run build -w client",
"lint": "npm run lint -w client && npm run server:lint",
"typecheck": "npm run typecheck -w client",
"test": "npm run test -w client && npm run server:test"
},
"engines": {
"node": ">=26.0.0"
},
"overrides": {
"@hono/node-server": "2.0.2",
"picomatch": "4.0.4",
"micromatch": {
"picomatch": "4.0.4"
},
"postcss": "8.5.25"
},
"devDependencies": {
"react": "^19.2.6",
"react-dom": "^19.2.6"
}
}