forked from t3-oss/create-t3-turbo
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
31 lines (31 loc) · 1.1 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
{
"name": "create-t3-turbo",
"private": true,
"engines": {
"node": ">=18.18.2"
},
"packageManager": "pnpm@8.11.0",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"postinstall": "pnpm lint:ws",
"db:push": "pnpm -F db push",
"db:studio": "pnpm -F db studio",
"dev": "turbo dev --parallel",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@acme/prettier-config": "workspace:^0.1.0",
"@turbo/gen": "^1.11.1",
"prettier": "^3.1.0",
"turbo": "^1.11.1",
"typescript": "^5.3.3"
},
"prettier": "@acme/prettier-config"
}