-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 989 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 989 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
{
"name": "create-t3-turbo",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.9.0",
"pnpm": ">=9.6.0"
},
"packageManager": "pnpm@10.6.3",
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"db:push": "turbo -F @acme/db push",
"db:studio": "turbo -F @acme/db studio",
"dev": "turbo watch dev --continue",
"dev:next": "turbo watch dev -F @acme/nextjs...",
"format": "turbo run format --continue --",
"format:fix": "turbo run format --continue -- --write",
"lint": "turbo run lint --continue --",
"lint:fix": "turbo run lint --continue -- --fix",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@turbo/gen": "^2.4.4",
"turbo": "^2.4.4",
"typescript": "catalog:"
}
}