chore: seminarhof customer project

This commit is contained in:
e2e
2026-07-11 08:06:17 +02:00
commit d34b9cd674
188 changed files with 20779 additions and 0 deletions

36
package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "@project/root",
"version": "0.0.1",
"private": true,
"packageManager": "bun@1.3.14",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"prebuild": "pikku all",
"db:reset": "pikku db reset",
"db:migrate": "pikku db migrate",
"dev:backend": "pikku dev --port 5003",
"dev": "bun run --filter @project/app dev",
"tsc": "bun run --filter '*' tsc",
"lint": "bun run --filter '*' lint",
"e2e": "cd e2e && bun run test",
"e2e:headed": "cd e2e && bun run test:headed"
},
"dependencies": {
"@pikku/addon-console": "^0.12.26",
"@pikku/better-auth": "^0.12.16",
"@pikku/cloudflare": "^0.12.13",
"@pikku/core": "^0.12.57",
"@pikku/kysely": "^0.13.0",
"@pikku/kysely-sqlite": "^0.12.8",
"@pikku/schema-cfworker": "^0.12.4"
},
"devDependencies": {
"@pikku/cli": "^0.12.76"
},
"overrides": {
"@pikku/core": "0.12.57"
}
}