-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 980 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 980 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "blackdocs",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"turbo": "^2.9.10",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"next": "16",
"fumadocs-core": "16",
"typescript": "6",
"eslint": "^9"
},
"ignoreMissing": [
"vite"
]
}
}
}