-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1008 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1008 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
40
41
42
43
{
"name": "workspace",
"type": "module",
"version": "1.0.5",
"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": "catalog:",
"vitest": "4.0.17"
},
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"@zenstackhq/orm": "^3.3.0",
"zod": "^4.1.0",
"kysely": "~0.28.8",
"ioredis": "^5.0.0",
"typescript": "^5.9.3",
"@types/bun": "1.3.8",
"@types/node": "20.19.6"
}
},
"packageManager": "bun@1.3.8"
}