forked from elie222/inbox-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 991 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 991 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
37
38
39
40
41
{
"name": "inbox-zero",
"private": true,
"scripts": {
"build": "turbo build --filter=./apps/web",
"dev": "turbo dev --filter=./apps/web",
"test": "turbo run test --filter=./apps/web",
"lint": "turbo lint",
"prepare": "husky install",
"ncu": "ncu -u -ws",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@turbo/gen": "2.5.4",
"husky": "9.1.7",
"lint-staged": "15.5.1",
"prettier": "3.5.3",
"turbo": "2.5.4",
"ultracite": "5.0.35"
},
"packageManager": "pnpm@10.13.1",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"npx ultracite format"
]
},
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4"
},
"patchedDependencies": {
"better-auth@1.3.4": "patches/better-auth@1.3.4.patch"
}
}
}