Files
2026-06-16 16:18:20 +03:00

23 lines
956 B
JSON

{
"private": true,
"scripts": {
"build:webapp": "npm --prefix frontend run build:webapp",
"build:docs": "npm --prefix docs-site run build",
"dev:docs": "npm --prefix docs-site run dev",
"preview:docs": "npm --prefix docs-site run preview",
"sync:docs": "npm --prefix docs-site run sync:docs",
"lint:py": "python -m ruff check .",
"lint:js": "npm --prefix frontend run lint",
"lint": "npm run lint:py && npm run lint:js",
"format:py": "python -m ruff format .",
"format:js": "npm --prefix frontend run format",
"format": "npm run format:py && npm run format:js",
"format:check:py": "python -m ruff format --check .",
"format:check:js": "npm --prefix frontend run format:check",
"format:check": "npm run format:check:py && npm run format:check:js",
"bench:bot": "python scripts/perf_benchmarks.py",
"test": "pytest -q",
"check": "npm run lint && npm test && npm run build:webapp"
}
}