-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 879 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 879 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
{
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.18.2",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"format": "turbo -F @openpoke/server format && pnpx ultracite fix .",
"lint": "turbo -F @openpoke/server lint && pnpx ultracite check .",
"typecheck": "turbo run typecheck",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"db:push": "turbo -F @openpoke/app push",
"db:studio": "turbo -F @openpoke/app studio",
"db:generate": "turbo -F @openpoke/app generate",
"db:migrate": "turbo -F @openpoke/app migrate"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"turbo": "^2.5.8",
"typescript": "^5.9.3",
"ultracite": "^5.6.2"
}
}