-
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) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 736 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": "homelab-os",
"version": "1.0.17",
"private": true,
"description": "John Vex Coder HomeLab OS - a premium self-hosted infrastructure dashboard",
"license": "MIT",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"dev": "concurrently -n backend,frontend -c green,cyan \"npm run dev -w backend\" \"npm run dev -w frontend\"",
"build": "npm run build -w backend && npm run build -w frontend",
"start": "npm run start -w backend",
"test": "npm test -w backend",
"typecheck": "npm run typecheck -w backend && npm run typecheck -w frontend",
"lint": "npm run lint -w frontend"
},
"devDependencies": {
"concurrently": "^9.1.0"
},
"engines": {
"node": ">=20"
}
}