-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "hon",
"private": true,
"description": "Top-level orchestrator for Hon — runs the sidecar engine + the React UI together so `cd Hon && npm run dev` is all you need.",
"scripts": {
"dev": "concurrently --kill-others --names engine,web --prefix-colors yellow,cyan \"npm:dev:engine\" \"npm:dev:web\"",
"dev:engine": "npm --prefix sidecar run web -- --skip-web-build",
"dev:web": "npm --prefix web run dev",
"install:all": "npm --prefix sidecar install && npm --prefix web install",
"postinstall": "npm --prefix sidecar install && npm --prefix web install",
"test": "npm --prefix sidecar test && npm --prefix web test -- --run",
"typecheck": "npm --prefix web run typecheck && npm --prefix sidecar run typecheck"
},
"devDependencies": {
"concurrently": "^9.0.0"
},
"dependencies": {
"zod": "^4.4.3"
}
}