-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.25 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.25 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
{
"name": "diffaudit-platform",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "Platform shell for DiffAudit frontend and API.",
"workspaces": [
"apps/web"
],
"scripts": {
"dev:web": "npm --prefix apps/web run dev",
"build:web": "npm --prefix apps/web run build",
"lint:web": "npm --prefix apps/web run lint",
"test:web": "npm --prefix apps/web run test",
"test:e2e": "npm --prefix apps/web run test:e2e",
"test:e2e:ui": "npm --prefix apps/web run test:e2e:ui",
"test:e2e:chromium": "npm --prefix apps/web run test:e2e:chromium",
"test:all": "npm run test:web && npm run test:e2e",
"dev:api": "go -C ./apps/api-go run ./cmd/platform-api --host 127.0.0.1 --port 8780",
"test:api": "go -C ./apps/api-go test ./...",
"build:api": "go -C ./apps/api-go build ./cmd/platform-api",
"publish:public-snapshot": "py -3 ./apps/api-go/scripts/publish_public_snapshot.py",
"check:public": "python scripts/check_public_boundary.py",
"lint:api": "gofmt -l apps/api-go",
"format:api": "gofmt -w apps/api-go",
"check:fast": "python scripts/run_local_checks.py --fast",
"check:all": "python scripts/run_local_checks.py"
},
"devDependencies": {
"playwright": "^1.59.1"
}
}