veza/veza-backend-api/package.json
senke 83a9a3537c chore: add Turborepo for monorepo orchestration
- Add turbo devDependency and packageManager to root
- Create turbo.json with build, test, lint pipeline
- Add package.json to veza-backend-api, veza-chat-server, veza-stream-server
- Extend workspaces to include Go and Rust services
- Migrate CI to use turbo run for build, test, lint
2026-02-14 22:38:32 +01:00

9 lines
276 B
JSON

{
"name": "veza-backend-api",
"private": true,
"scripts": {
"build": "go build -v ./...",
"test": "go test -v ./internal/handlers/... ./internal/services/... -short",
"lint": "test -z \"$(gofmt -l .)\" || (echo 'gofmt needed on:'; gofmt -l .; exit 1)"
}
}