-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 918 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 918 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
29
30
31
32
33
34
35
36
37
38
39
{
"name": "workflow-engine-mono",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.1.2",
"turbo": "^2.5.5",
"typescript": "5.8.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.19",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format ./{apps,packages}",
"format:fix": "biome format --write ./{apps,packages}",
"check-types": "turbo run check-types"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"zod": "^4.0.5",
"@orpc/contract": "^1.7.4",
"@orpc/openapi": "^1.7.4",
"@orpc/server": "^1.7.4",
"@orpc/zod": "^1.7.4",
"@orpc/openapi-client": "^1.7.4",
"@orpc/tanstack-query": "^1.7.4",
"typescript": "latest"
}
}
}