-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 859 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 859 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
36
{
"name": "combo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"check:fix": "biome check --write .",
"check-types": "turbo run check-types",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"turbo": "^2.5.8",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.8",
"@types/react-dom": "19.2.3"
}
}
}