-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.09 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.09 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
{
"name": "rt-stack",
"private": true,
"type": "module",
"scripts": {
"auth:schema:generate": "turbo run auth:schema:generate",
"postauth:schema:generate": "echo NOTE: you will also need to fix styles and db:push your new schema",
"build": "turbo run build",
"clean": "turbo run clean",
"db:push": "turbo -F @repo/db db:push",
"db:studio": "turbo -F @repo/db db:studio",
"dev": "turbo watch dev --continue",
"env:copy-example": "turbo run env:copy-example",
"env:remove": "turbo run env:remove",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "pnpm format --write",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "pnpm lint --fix",
"postclean": "git clean -xdf .cache .turbo node_modules",
"start": "turbo run start",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add -F @repo/ui --"
},
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"turbo": "catalog:"
},
"engines": {
"node": ">=24"
}
}