Add projects

This commit is contained in:
Alois 2026-08-24 00:10:41 +02:00
commit 8b607dd700
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
1802 changed files with 503346 additions and 2 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "vibe-proxy",
"private": true,
"packageManager": "pnpm@11.21.0",
"scripts": {
"dev": "concurrently --kill-others --names backend,frontend \"pnpm dev:backend\" \"pnpm dev:frontend\"",
"dev:backend": "cross-env MANAGEMENT_PASSWORD=dev go -C backend run ./cmd/server --config config.dev.yaml",
"dev:frontend": "pnpm --dir frontend dev",
"build": "pnpm build:frontend && pnpm build:backend",
"build:backend": "go -C backend build -tags frontend -o cli-proxy-api ./cmd/server",
"build:frontend": "pnpm --dir frontend exec tsc && pnpm --dir frontend exec vite build --outDir ../backend/internal/managementasset/dist --emptyOutDir",
"test": "pnpm test:frontend && pnpm test:backend",
"test:backend": "go -C backend test ./...",
"test:frontend": "pnpm --dir frontend test",
"lint": "pnpm --dir frontend lint",
"type-check": "pnpm --dir frontend type-check",
"check": "pnpm type-check && pnpm lint && pnpm test && pnpm build"
},
"devDependencies": {
"concurrently": "^9.2.1",
"cross-env": "^10.1.0"
}
}