let claude create the monorepo layout

This commit is contained in:
2026-03-09 16:45:29 +01:00
commit 40cb03cb0b
71 changed files with 5346 additions and 0 deletions

14
package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "campaign-manager",
"private": true,
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
},
"scripts": {
"dev:symbiote": "pnpm --filter symbiote dev",
"dev:web": "pnpm --filter web dev",
"build:symbiote": "pnpm --filter symbiote build",
"build:web": "pnpm --filter web build",
"build:backend": "cargo build --release"
}
}