-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 1.29 KB
/
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
40
41
42
43
44
45
{
"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",
"prepare": "node .husky/install.mjs"
},
"devDependencies": {
"lint-staged": "^15.2.7",
"@biomejs/biome": "1.8.3",
"husky": "^9.1.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^18.17.0"
},
"packageManager": "pnpm@9.5.0",
"engines": {
"node": "^18.18.0",
"pnpm": ">=9.5.0"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"resolutions": {
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0"
}
}