-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.72 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "bloud",
"private": false,
"version": "0.1.0",
"license": "AGPL-3.0-only",
"workspaces": [
"services/host-agent",
"services/host-agent/web",
"services/installer/web",
"packages/ui"
],
"scripts": {
"setup": "npm install && npm run cli:build && ./bloud setup",
"cli:build": "cd cli && go build -o ../bloud .",
"dev": "turbo run dev",
"build": "turbo run build",
"frontend:dev": "npm run dev --workspace=services/host-agent/web",
"backend:dev": "cd services/host-agent && go run ./cmd/host-agent",
"backend:build": "cd services/host-agent && go build -o bin/host-agent ./cmd/host-agent",
"test": "npm run test:unit",
"test:go": "cd services/host-agent && go run gotest.tools/gotestsum@latest --format testdox ./...",
"test:go:apps": "cd apps && go run gotest.tools/gotestsum@latest --format testdox ./...",
"test:go:all": "npm run test:go && npm run test:go:apps",
"test:ts": "npm run test --workspace=@bloud/host-agent-web",
"test:go:coverage": "cd services/host-agent && go test -coverprofile=coverage.out ./... && go tool cover -func=coverage.out | tail -1",
"test:nix": "nix flake check",
"test:unit": "npm run test:go:all && npm run test:ts",
"test:precommit": "npm run test:go:all && npm run test:ts",
"test:integration": "cd integration && npm test --",
"test:integration:app": "cd integration && npm test -- --grep",
"test:all": "npm run test:unit && npm run test:nix && npm run test:integration",
"show-report": "cd smoke && npx playwright show-report"
},
"devDependencies": {
"husky": "^9.1.7",
"playwright": "1.56.1",
"turbo": "^2.0.0"
},
"packageManager": "npm@10.0.0",
"engines": {
"node": ">=18.0.0"
}
}