-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "workflow-engine-mono",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"eslint": "^9.39.2",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.6.3",
"typescript": "latest",
"typescript-eslint": "^8.49.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.4",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check \"**/*.{ts,tsx,css}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx,css}\"",
"check-types": "turbo run check-types"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"zod": "^4.1.13",
"@orpc/contract": "^1.12.3",
"@orpc/openapi": "^1.12.3",
"@orpc/server": "^1.12.3",
"@orpc/zod": "^1.12.3",
"@orpc/openapi-client": "^1.12.3",
"@orpc/tanstack-query": "^1.12.3",
"@orpc/client": "^1.12.3",
"typescript": "latest"
}
}
}