-
Notifications
You must be signed in to change notification settings - Fork 556
/
Copy pathpackage.json
39 lines (39 loc) · 1001 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
38
39
{
"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",
"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.4.4",
"eslint": "9.23.0",
"husky": "9.1.7",
"lint-staged": "15.5.0",
"prettier": "3.5.3",
"turbo": "2.4.4"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{ts,tsx,md}": "prettier --write"
},
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4"
}
}
}