-
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.4 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.4 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": "agentflow",
"version": "1.0.0",
"private": true,
"description": "AgentFlow monorepo (web + server + shared packages)",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm --workspace apps/server run dev",
"dev:server": "npm --workspace apps/server run dev",
"dev:web": "npm --workspace apps/web run dev",
"start": "npm --workspace apps/server run start",
"build": "npm run build:server && npm run build:web",
"build:packages": "npm --workspace packages/types run build && npm --workspace packages/workflow-engine run build",
"build:server": "npm run build:packages && npm --workspace apps/server run build",
"build:web": "npm --workspace apps/web run build",
"test": "npm run test:engine && npm run test:server",
"test:engine": "npm --workspace packages/workflow-engine run test",
"test:server": "npm --workspace apps/server run test",
"clean": "npm run clean --workspaces",
"lint": "eslint .",
"typecheck": "npm run typecheck:server && npm run typecheck:web",
"typecheck:server": "npm --workspace apps/server run typecheck",
"typecheck:web": "npm --workspace apps/web run typecheck"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"concurrently": "^9.1.0",
"eslint": "^9.14.0",
"typescript": "^5.6.3",
"tsx": "^4.19.2"
}
}