-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
74 lines (74 loc) · 2.03 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@bitwarden/contributing-docs",
"version": "0.0.0",
"description": "Bitwarden Contributing Docs",
"repository": {
"type": "git",
"url": "git+https://github.com/bitwarden/contributing-docs.git"
},
"author": "Bitwarden Inc. <[email protected]> (https://bitwarden.com)",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/bitwarden/contributing-docs/issues"
},
"homepage": "https://bitwarden.com",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "./scripts/docusaurus-start.sh",
"start:insecure": "docusaurus start",
"setup:ssl": "./scripts/generate-certs.sh",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"prettier": "prettier --write .",
"lint": "prettier --check .",
"prepare": "husky",
"spellcheck": "cspell lint \"**/*.md{x,}\""
},
"dependencies": {
"@docusaurus/core": "3.6.1",
"@docusaurus/preset-classic": "3.6.1",
"@mdx-js/react": "3.1.0",
"docusaurus-lunr-search": "3.5.0",
"prism-react-renderer": "2.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"remark-kroki": "0.3.7"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.6.1",
"@docusaurus/tsconfig": "3.6.1",
"@types/react": "18.3.12",
"cspell": "8.16.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "~22.11.0",
"npm": "~10"
},
"lint-staged": {
"*": "prettier --cache --write --ignore-unknown",
"*.md{x,}": "cspell lint"
}
}