-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.32 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.32 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
{
"name": "create-t3-turbo",
"private": true,
"engines": {
"node": ">=22.14.0",
"pnpm": ">=9.6.0"
},
"packageManager": "pnpm@10.11.1",
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"auth:generate": "pnpm -F @acme/auth generate",
"db:push": "infisical run -- turbo -F @acme/db push",
"db:studio": "infisical run -- turbo -F @acme/db studio",
"dev": "infisical run -- turbo watch dev --continue",
"dev:next": "infisical run -- turbo watch dev -F @acme/nextjs...",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add"
},
"devDependencies": {
"@acme/prettier-config": "workspace:*",
"@turbo/gen": "^2.5.4",
"prettier": "catalog:",
"turbo": "^2.5.4",
"typescript": "catalog:"
},
"prettier": "@acme/prettier-config"
}