-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.61 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
36
{
"name": "archlab",
"version": "0.1.0",
"private": true,
"description": "ArchLab — local engineering command center: maps any project to a live canvas, runs structured checks, and grows a global brain. Everything runs on localhost.",
"type": "module",
"engines": {
"node": ">=20"
},
"workspaces": [
"packages/shared",
"packages/backend",
"packages/frontend",
"packages/mcp-server"
],
"scripts": {
"build:shared": "npm run build --workspace @archlab/shared",
"build:backend": "npm run build --workspace @archlab/backend",
"build:frontend": "npm run build --workspace @archlab/frontend",
"build:mcp": "npm run build --workspace @archlab/mcp-server",
"build": "npm run build:shared && npm run build:backend && npm run build:frontend && npm run build:mcp",
"dev": "npm run build:shared && concurrently -n backend,frontend,mcp -c green,cyan,magenta \"npm:dev:backend\" \"npm:dev:frontend\" \"npm:dev:mcp\"",
"dev:backend": "npm run dev --workspace @archlab/backend",
"dev:frontend": "npm run dev --workspace @archlab/frontend",
"dev:mcp": "npm run dev --workspace @archlab/mcp-server",
"start": "concurrently -n backend,frontend,mcp -c green,cyan,magenta \"npm:start:backend\" \"npm:start:frontend\" \"npm:start:mcp\"",
"start:backend": "npm run start --workspace @archlab/backend",
"start:frontend": "npm run dev --workspace @archlab/frontend",
"start:mcp": "npm run start --workspace @archlab/mcp-server",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"concurrently": "^9.1.0",
"typescript": "^5.7.2"
}
}