chore(turborepo): initial setup and config, move db to package

This commit is contained in:
Hyteq
2025-06-24 11:23:40 +03:00
parent 65bff0d2da
commit 140880a444
15 changed files with 614 additions and 6701 deletions

17
package.json Normal file
View File

@ -0,0 +1,17 @@
{
"packageManager": "bun@1.2.17",
"devDependencies": {
"turbo": "^2.5.4"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"check-types": "turbo run check-types",
"lint": "turbo run lint",
"format": "turbo run format"
}
}