-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.09 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
33
34
35
36
37
38
39
{
"name": "homelab-os",
"version": "1.0.17",
"private": true,
"description": "John Vex Coder HomeLab OS - a premium self-hosted infrastructure dashboard",
"license": "GPL-3.0-or-later",
"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": "eslint backend/src frontend/src"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"concurrently": "^9.1.0",
"eslint": "^10.10.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.6",
"globals": "^17.12.0",
"typescript-eslint": "^8.69.0"
},
"overrides": {
"qs": "^6.16.0"
},
"engines": {
"node": ">=24"
},
"allowScripts": {
"better-sqlite3@13.0.3": true,
"esbuild@0.28.2": true,
"esbuild@0.25.12": true
}
}