-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 KB
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
42
43
{
"name": "website",
"private": true,
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"docs:dev": "pnpm --filter=docs run dev",
"docs:build": "pnpm --filter=docs run build",
"docs:typecheck": "pnpm --filter=docs run typecheck",
"website:dev": "pnpm --filter=website run dev",
"website:build": "pnpm --filter=website run build",
"website:typecheck": "pnpm --filter=website run typecheck",
"typecheck": "pnpm -r run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"build": "pnpm -r run build",
"format-and-lint": "biome check .",
"check": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
"format-and-lint:fix": "biome check . --write"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.9.0",
"lint-staged": "^15.2.7"
},
"packageManager": "pnpm@10.22.0",
"engines": {
"node": "^24.4.0",
"pnpm": ">=10.22.0"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"resolutions": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}