-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 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
{
"name": "olympian",
"version": "0.1.0",
"description": "Hermes Agent orchestration service — an AI dark factory. Monorepo root: `api` (orchestration service) and, eventually, `app` (management/overview UI).",
"private": true,
"workspaces": [
"api",
"app"
],
"engines": {
"node": ">=20"
},
"scripts": {
"setup": "npm install && npm run prisma:setup",
"start": "npm run -w api start:prod",
"dev": "npm run -w api start:dev & npm run -w app dev",
"prisma:setup": "npm run -w api prisma:generate && npm run -w api prisma:migrate",
"prisma:generate": "npm run -w api prisma:generate",
"prisma:deploy": "npm run -w api prisma:deploy",
"prisma:studio": "npm run -w api prisma:studio",
"hermes:docker": "node scripts/setup-hermes.mjs",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"check": "npm run check --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:e2e": "npm run -w api test:e2e"
}
}