-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 754 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 754 Bytes
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
{
"name": "agent-orchestration-patterns",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"server",
"frontend",
"patterns/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:frontend\"",
"dev:server": "npm run dev --workspace=server",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "tsc --build && npm run build --workspace=frontend",
"build:server": "tsc --build",
"build:frontend": "npm run build --workspace=frontend",
"typecheck": "tsc --build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint ."
},
"devDependencies": {
"concurrently": "^9.1.0",
"typescript": "^5.7.3",
"vitest": "^3.0.0"
}
}