Scaffold and Phase 1

This commit is contained in:
2026-05-02 19:46:42 -05:00
parent ab74e7cad4
commit d909cb7c30
92 changed files with 4967 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"name": "storybid",
"private": true,
"workspaces": [
"packages/shared",
"packages/server",
"packages/client"
],
"scripts": {
"dev": "concurrently \"npm run dev -w packages/server\" \"npm run dev -w packages/client\"",
"build": "npm run build -w packages/shared && npm run build -w packages/server && npm run build -w packages/client",
"typecheck": "npm run typecheck -w packages/shared && npm run typecheck -w packages/server && npm run typecheck -w packages/client",
"db:migrate": "npm run db:migrate -w packages/server",
"db:generate": "npm run db:generate -w packages/server",
"db:studio": "npm run db:studio -w packages/server"
},
"devDependencies": {
"concurrently": "^8.2.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20.0.0"
}
}