-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 831 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 831 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": "pstrack",
"private": true,
"workspaces": {
"packages": [
"apps/*"
]
},
"type": "module",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"check": "oxlint && oxfmt --write",
"clean": "rm -rf **/.turbo **/.node_modules",
"db:push": "turbo -F api db:push",
"db:studio": "turbo -F api db:studio",
"db:generate": "turbo -F api db:generate",
"db:drop": "turbo -F api db:drop",
"db:reset": "turbo -F api db:reset",
"db:migrate": "turbo -F api db:migrate"
},
"devDependencies": {
"lefthook": "^2.1.0",
"oxfmt": "^0.19.0",
"oxlint": "^1.43.0",
"turbo": "^2.8.3"
},
"engines": {
"bun": ">=1.3.7",
"node": ">=18"
},
"packageManager": "bun@1.3.7",
"catalog": {
"typescript": "5.9.2",
"zod": "^4.3.6",
"@types/node": "^25.1.0",
"@types/bun": "^1.3.7"
}
}