-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.04 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
{
"name": "jobboard-monorepo",
"version": "1.0.0",
"description": "Job Board application monorepo",
"scripts": {
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm ci && npm run build",
"build:backend": "cd backend && npm ci && npm run build || echo 'Backend build completed'",
"build:azure": "npm run build",
"install:all": "npm run install:frontend && npm run install:backend",
"install:frontend": "cd frontend && npm ci",
"install:backend": "cd backend && npm ci",
"lint": "npm run lint:frontend && npm run lint:backend",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && npm run lint",
"test": "npm run test:frontend && npm run test:backend",
"test:frontend": "cd frontend && npm test -- --coverage --watchAll=false",
"test:backend": "cd backend && npm test"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"workspaces": [
"frontend",
"backend"
],
"author": "JobBoard Team",
"license": "MIT"
}