chore: seminarhof customer project

This commit is contained in:
e2e
2026-06-21 22:23:43 +02:00
commit e0331cbb1c
161 changed files with 18517 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "@project/root",
"version": "0.0.1",
"private": true,
"packageManager": "yarn@4.10.3",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"prebuild": "yarn workspace @project/functions pikku all",
"db:reset": "yarn workspace @project/functions pikku db reset",
"db:migrate": "yarn workspace @project/functions pikku db migrate",
"dev:backend": "yarn workspace @project/functions pikku dev --port 5003",
"dev": "yarn workspace @project/app dev",
"tsc": "yarn workspaces foreach --all run tsc",
"lint": "yarn workspaces foreach --all run lint",
"e2e": "cd e2e && yarn test",
"e2e:headed": "cd e2e && yarn test:headed"
},
"dependencies": {
"@pikku/addon-console": "^0.12.16",
"@pikku/better-auth": "^0.12.9",
"@pikku/core": "^0.12.35",
"@pikku/kysely-sqlite": "^0.12.6"
},
"devDependencies": {
"@pikku/cli": "^0.12.45"
}
}