Initial commit from create-turbo

This commit is contained in:
2026-04-26 18:49:51 -05:00
commit 86e0ff5691
61 changed files with 2388 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"name": "turborepo-starter-project",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.7.4",
"turbo": "^2.9.6",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.13",
"workspaces": [
"apps/*",
"packages/*"
]
}