13 lines
357 B
JSON
13 lines
357 B
JSON
{
|
|
"name": "@headquarter/api",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": ".venv/bin/uvicorn app.main:app --reload --port 8000",
|
|
"build": "echo 'Python build step skipped (no compilation required)'",
|
|
"lint": ".venv/bin/ruff check app tests",
|
|
"test": ".venv/bin/pytest",
|
|
"typecheck": ".venv/bin/mypy app tests"
|
|
}
|
|
}
|