-
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.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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": "workspace",
"type": "module",
"version": "0.0.0",
"private": "true",
"license": "MIT",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"build:packages": "turbo run build --filter=\"./packages/*\"",
"start": "turbo run start",
"lint": "oxlint",
"lint:fix": "oxlint --fix --fix-suggestions",
"format:fix": "oxfmt",
"test": "vitest run",
"test:watch": "vitest --watch"
},
"devDependencies": {
"@types/bun": "catalog:",
"@types/node": "catalog:",
"oxfmt": "0.20.0",
"oxlint": "1.35.0",
"tsdown": "0.18.3",
"turbo": "2.7.2",
"typescript": "5.9.3",
"vitest": "4.0.17"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"catalog": {
"@zenstackhq/orm": "^3.4.1",
"@zenstackhq/schema": "^3.4.1",
"@zenstackhq/cli": "^3.4.1",
"zod": "^4.1.0",
"kysely": "~0.28.8",
"ioredis": "^5.0.0",
"typescript": "^5.9.3",
"decimal.js": "^10.4.3",
"pg": "8.16.0",
"@types/pg": "8.16.0",
"@types/bun": "1.3.9",
"@types/node": "22.12.0"
}
},
"packageManager": "bun@1.3.10"
}