feat(task2): add root turborepo and npm workspaces configuration

This commit is contained in:
2026-07-02 15:16:07 +08:00
parent 9bbcb20b51
commit ee2cad0941
4 changed files with 15130 additions and 6 deletions

View File

@@ -1,10 +1,15 @@
{
"name": "gongxue-base",
"private": true,
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"build:backend": "cd backend && npx tsc --noEmit",
"typecheck:backend": "cd backend && npx tsc --noEmit",
"build:frontend": "cd frontend && npx vite build --logLevel error"
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "turbo run format",
"typecheck": "turbo run typecheck"
},
"dependencies": {
"@fission-ai/openspec": "^1.5.0"
}
"devDependencies": { "turbo": "^2.0.0" },
"dependencies": { "@fission-ai/openspec": "^1.5.0" }
}