Initial commit: site monorepo with API, web, and infra.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
влад
2026-07-16 10:11:54 +03:00
co-authored by Cursor
commit 016910ffb7
447 changed files with 73972 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"name": "compton",
"private": true,
"version": "1.0.0",
"packageManager": "pnpm@9.15.9",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"lint": "pnpm -r --if-present lint",
"typecheck": "pnpm -r --if-present typecheck",
"typecheck:all": "pnpm typecheck && cd apps/api && python -m mypy app",
"test:ci": "pnpm --filter web test:ci && cd apps/api && python -m pytest --cov=app --cov-fail-under=90",
"check:all": "pnpm lint && pnpm typecheck:all && pnpm --filter web test:ci && cd apps/api && python -m pytest --cov=app --cov-fail-under=90 && pnpm --filter web e2e",
"e2e": "pnpm --filter web e2e",
"openapi:types": "python apps/api/scripts/export_openapi.py && pnpm --filter @compton/shared-types generate"
}
}