chore: bootstrap monorepo workspace and shared schemas

This commit is contained in:
Anton
2026-04-23 16:03:34 +03:00
commit 5f6a551b6c
15 changed files with 308 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "family-wishlist",
"private": true,
"version": "0.1.0",
"description": "Family Wishlist monorepo: Fastify + Prisma backend, React + Vite frontend",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20.10.0",
"pnpm": ">=9"
},
"scripts": {
"dev": "pnpm -r --parallel --stream run dev",
"build": "pnpm -r run build",
"typecheck": "pnpm -r run typecheck",
"lint": "pnpm -r run lint",
"format": "prettier --write .",
"hash-password": "pnpm --filter @family-wishlist/backend hash-password"
},
"devDependencies": {
"prettier": "^3.3.3",
"typescript": "^5.6.2"
}
}