-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1010 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1010 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
34
{
"name": "monorepo-tanstarter",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"dev:web": "turbo run dev --filter=@repo/web",
"lint": "turbo run lint",
"format": "prettier --write .",
"check-types": "turbo run check-types",
"check": "pnpm format && turbo run lint && turbo run check-types",
"prepare": "husky",
"deps": "pnpm dlx taze@latest -Ilwr",
"deps:major": "pnpm dlx taze@latest major -Ilwr",
"db": "pnpm --filter=@repo/db run db",
"ui": "pnpm --filter=@repo/ui run ui",
"ui:web": "pnpm --filter=@repo/web run ui"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"husky": "catalog:",
"lint-staged": "catalog:",
"prettier": "catalog:",
"prettier-plugin-organize-imports": "catalog:",
"prettier-plugin-tailwindcss": "catalog:",
"turbo": "catalog:"
},
"packageManager": "pnpm@10.22.0",
"engines": {
"node": ">=22"
}
}