generated from t3-oss/create-t3-turbo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.56 KB
/
package.json
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
{
"name": "battle-stadium",
"private": true,
"engines": {
"node": "20.x",
"pnpm": "^9"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"db:push": "turbo -F @battle-stadium/db push",
"db:pull": "turbo -F @battle-stadium/db pull",
"db:studio": "turbo -F @battle-stadium/db studio",
"dev": "turbo watch dev --continue",
"dev:next": "turbo watch dev -F @battle-stadium/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",
"fix": "pnpm lint:fix && pnpm format:fix",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"typecheck:watch": "turbo run typecheck:watch --concurrency 11",
"ui-add": "turbo run ui-add",
"sort-packages": "turbo run sort-packages",
"vercel:pull": "turbo run vercel:pull",
"turbo:update": "pnpm add turbo@latest --save-dev -w"
},
"devDependencies": {
"@battle-stadium/prettier-config": "workspace:*",
"@turbo/gen": "catalog:turbo",
"prettier": "catalog:",
"turbo": "catalog:turbo",
"typescript": "catalog:"
},
"prettier": "@battle-stadium/prettier-config"
}