feat: initialize monorepo with Turborepo

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
consultoria-as
2026-02-22 03:12:18 +00:00
parent 6671359367
commit 0855333a8c
5 changed files with 159 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "project-afterlife",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"clean": "turbo clean"
},
"devDependencies": {
"turbo": "^2"
},
"packageManager": "npm@10.8.0"
}