-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 969 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 969 Bytes
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
{
"name": "internal-auth-service-monorepo",
"version": "1.0.0",
"private": true,
"description": "Monorepo containing API (C# Auth Service) and Web (Next.js Portal)",
"workspaces": [
"apps/api/*",
"apps/web/*",
"packages/*"
],
"scripts": {
"dev": "npx -y concurrently \"npm:dev:*\"",
"dev:web": "npm run dev --workspace=apps/web/portal",
"dev:landing": "npm run dev --workspace=apps/web/landing",
"dev:api": "dotnet run --project apps/api/internal-auth-service",
"build:web": "npm run build --workspace=apps/web/portal",
"build:landing": "npm run build --workspace=apps/web/landing",
"build:api": "dotnet build apps/api/internal-auth-service",
"lint:web": "npm run lint --workspace=apps/web/portal",
"lint:landing": "npm run lint --workspace=apps/web/landing",
"lint": "npm run lint --workspaces --if-present",
"docker:up": "docker compose up --build",
"docker:down": "docker compose down"
}
}