-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 984 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 984 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
35
{
"name": "my-turborepo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"clean": "turbo clean && rm -rf .turbo node_modules",
"ui:add:www": "pnpm --filter=www ui:add",
"db:generate": "pnpm --filter=@umamin/db generate",
"db:migrate": "pnpm --filter=@umamin/db migrate",
"db:studio": "pnpm --filter=@umamin/db studio",
"db:seed": "pnpm --filter=@umamin/db seed",
"aes:generate": "pnpm --filter=@umamin/encryption generate",
"lint": "turbo run lint",
"check-types": "turbo run check-types",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/node": "^24.12.2",
"lefthook": "^2.1.5",
"turbo": "^2.9.6",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24"
},
"pnpm": {
"onlyBuiltDependencies": [
"lefthook"
]
}
}