-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.21 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
{
"name": "coolify-dashboard",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "A modern, production-ready dashboard for monitoring Coolify apps, services, and databases.",
"author": "Burak Kalaycı",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kalayciburak/coolify-dashboard.git"
},
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "npm run dev -w client & npm run dev -w server",
"dev:client": "npm run dev -w client",
"dev:server": "npm run dev -w server",
"build": "npm run build -w client",
"build:all": "npm run build -w client && npm run build -w server",
"start": "npm run start -w server",
"lint": "npm run lint -w client && npm run lint -w server",
"lint:fix": "npm run lint:fix -w client",
"format": "npm run format -w client",
"format:check": "npm run format:check -w client",
"docker:build": "docker build -t coolify-dashboard .",
"docker:build:hub": "docker build -t torukobyte/coolify-dashboard:latest .",
"docker:run": "docker run -d -p 5000:5000 --env-file .env --env-file server/.env coolify-dashboard"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}