Initialize Aidoit v0.1 monorepo
CI / frontend (push) Canceled after 0s
CI / api (push) Canceled after 0s

This commit is contained in:
Pavel Kerndl
2026-07-27 18:27:37 +02:00
commit c0b013f067
65 changed files with 1323 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"name": "aidoit",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.0.0",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev:web": "pnpm --filter @aidoit/web dev",
"dev:msp": "pnpm --filter @aidoit/msp dev",
"dev:api": "cd apps/api && python -m uvicorn app.main:app --reload --port 8000"
},
"devDependencies": {
"prettier": "^3.5.0",
"turbo": "^2.5.0",
"typescript": "^5.8.0"
}
}