-
Notifications
You must be signed in to change notification settings - Fork 287
/
package.json
37 lines (37 loc) · 914 Bytes
/
package.json
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
{
"name": "inbox-zero",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prettier": "npx prettier --write \"**/*.{ts,tsx}\"",
"prepare": "husky install",
"ncu": "ncu -u -ws",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@inboxzero/eslint-config": "workspace:*",
"@turbo/gen": "^2.1.3",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"turbo": "^2.1.3"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{ts,tsx,md}": "prettier --write"
},
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "apps/web/patches/[email protected]"
}
}
}