Initial Commit

This commit is contained in:
2026-09-02 16:29:03 +00:00
commit 1a9c69fc9d
34 changed files with 7479 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"name": "hops-n-grains",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "npm run dev:all",
"dev:all": "npx concurrently -n \"backend,frontend\" -c \"yellow,cyan\" \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:frontend": "npm --prefix frontend run dev",
"dev:backend": "cd backend && (./pocketbase serve --http 127.0.0.1:8090 2>/dev/null || .\\pocketbase.exe serve --http 127.0.0.1:8090)",
"build": "npm --prefix frontend run build",
"preview": "npm --prefix frontend run preview",
"migrate": "cd backend && (./pocketbase migrate up 2>/dev/null || .\\pocketbase.exe migrate up)"
}
}