-
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) · 1.15 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.15 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
{
"name": "blackhead",
"description": "🐦⬛ Turborepo template for Next.js apps",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "ultracite lint",
"format:ci": "prettier --write .github",
"format": "ultracite format",
"typecheck": "turbo run typecheck",
"bump-deps": "bunx --bun npm-check-updates --deep -u -x \"react-day-picker\" && bun install",
"bump-ui": "bunx --bun shadcn@canary add --all --overwrite -c packages/ui",
"clean": "git clean -xdf node_modules full",
"auth:generate": "cd packages/auth && bun run generate",
"db:generate": "cd packages/database && bun run db:generate",
"db:migrate": "cd packages/database && bun run db:migrate",
"db:push": "cd packages/database && bun run db:push",
"db:studio": "cd packages/database && bun run db:studio"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"prettier": "^3.5.3",
"turbo": "^2.4.4",
"typescript": "5.8.2",
"ultracite": "^4.2.1"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.8",
"workspaces": ["apps/*", "packages/*"]
}