-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 852 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 852 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
{
"private": true,
"scripts": {
"docs": "nx dev @cereb/docs",
"docs:build": "nx build @cereb/docs",
"docs:preview": "nx preview @cereb/docs",
"website": "nx dev website",
"postinstall": "[ -n \"$SKIP_POSTINSTALL\" ] || (npx nx build @cereb/builder && SKIP_POSTINSTALL=1 pnpm rebuild)",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@nx/js": "^22.3.3",
"@vitest/coverage-v8": "^2.0.0",
"husky": "^9.1.7",
"jsdom": "^25.0.0",
"lint-staged": "^16.2.7",
"nx": "^22.2",
"typescript": "^5.9",
"vite": "^7.3",
"vitest": "^2.0.0"
}
}