-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.26 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
{
"name": "helpdesk-monorepo",
"private": true,
"packageManager": "pnpm@11.10.0",
"engines": {
"node": ">=26",
"pnpm": ">=11"
},
"scripts": {
"backend:restore": "dotnet restore HelpDesk.slnx",
"backend:build": "dotnet build HelpDesk.slnx",
"backend:build:release": "dotnet build HelpDesk.slnx -c Release",
"backend:test": "dotnet test HelpDesk.slnx -c Debug",
"backend:format:check": "dotnet format HelpDesk.slnx --verify-no-changes",
"stack:dev": "dotnet run --project backend/AppHost/HelpDesk.AppHost.csproj",
"frontend:dev": "pnpm --dir frontend dev",
"frontend:check": "pnpm --dir frontend check",
"frontend:lint": "pnpm --dir frontend lint",
"frontend:test:unit": "pnpm --dir frontend test:unit",
"frontend:test:e2e": "pnpm --dir frontend test:e2e",
"frontend:format:check": "pnpm --dir frontend format:check",
"frontend:build": "pnpm --dir frontend build",
"frontend:api:check": "pnpm --dir frontend api:check",
"check:quick": "pnpm frontend:check && pnpm frontend:lint && pnpm frontend:format:check && pnpm frontend:test:unit",
"check:full": "pnpm check:quick && pnpm frontend:test:e2e && pnpm frontend:api:check && pnpm backend:test && pnpm backend:build:release && pnpm backend:format:check"
}
}