-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.04 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
35
36
37
38
39
{
"name": "platform",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"lint:root": "biome check .",
"format": "biome format --write .",
"typecheck": "turbo typecheck",
"test": "turbo test",
"db:generate": "turbo --filter=@deployguru/db db:generate",
"db:migrate": "turbo --filter=@deployguru/db db:migrate",
"db:seed": "turbo --filter=@deployguru/db db:seed",
"db:studio": "turbo --filter=@deployguru/db db:studio",
"prepare": "husky"
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.0.0",
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@changesets/cli": "^2.27.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"turbo": "^2.8.0",
"typescript": "^5.8.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"biome check --write --no-errors-on-unmatched"
]
}
}