-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 899 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "inserv",
"version": "1.0.0",
"description": "Server & Service Management Dashboard",
"scripts": {
"dev": "concurrently -n backend,frontend -c blue,green \"bun run dev:backend\" \"bun run dev:frontend\"",
"dev:backend": "cd backend && go run ./cmd/server",
"dev:frontend": "cd frontend && bun run dev",
"build": "cd frontend && bun run build",
"build:backend": "cd backend && go build -o ../dist/inserv-backend ./cmd/server",
"build:frontend": "cd frontend && bun run build",
"install": "concurrently \"bun run install:frontend\" \"bun run install:backend\"",
"install:frontend": "cd frontend && bun install",
"install:backend": "cd backend && go mod download"
},
"devDependencies": {
"concurrently": "^9.2.1"
},
"workspaces": [
"frontend"
],
"license": "MIT"
}