-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.33 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.33 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
{
"name": "lab-dash",
"version": "1.3.7",
"description": "This is an open-source user interface designed to manage your server and homelab",
"main": "index.js",
"scripts": {
"dev": "concurrently \"cd backend && npm run dev\" \"cd frontend && npm run dev\"",
"build": "concurrently \"cd backend && npm run build\" \"cd frontend && npm run build\"",
"preinstall": "cd ./backend && npm install && cd .. && cd ./frontend && npm install",
"docker:build:dev": "docker build . --no-cache -t ghcr.io/anthonygress/lab-dash:latest",
"docker:build": "docker build --platform linux/amd64 . -t ghcr.io/anthonygress/lab-dash:latest",
"docker:build:multi": "docker buildx build --platform linux/amd64,linux/arm64 . -t ghcr.io/anthonygress/lab-dash:latest",
"docker:run": "docker run --platform=linux/amd64 -p 2022:80 -p 5000:5000 ghcr.io/anthonygress/lab-dash:latest",
"docker:run:dev": "docker run -p 2022:2022 ghcr.io/anthonygress/lab-dash:latest",
"clean": "rimraf node_modules package-lock.json frontend/node_modules frontend/package-lock.json backend/node_modules backend/package-lock.json",
"lint": "concurrently \"cd frontend && npm run lint\" \"cd backend && npm run lint\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.2",
"rimraf": "^5.0.5"
}
}