chore: initial project scaffold

Setup monorepo structure with pnpm workspaces, Turborepo, TypeScript,
Biome, Docker Compose (PostgreSQL, Redis, MinIO), Nginx configs,
PM2 ecosystem, and SSL certificates.
This commit is contained in:
Sase Dev
2026-02-12 00:26:34 +00:00
commit 7fc47ce9cc
12 changed files with 453 additions and 0 deletions

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "sase-v2",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.29.3",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean"
},
"devDependencies": {
"turbo": "^2"
}
}