-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 2.2 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
{
"name": "passbolt-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"docusaurus": "npm run generate:footer && docusaurus",
"start": "npm run generate:footer && docusaurus start",
"build": "npm run generate:footer && 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",
"generate:footer": "node ./scripts/fetch-footer.js",
"lint": "eslint 'src/**/*.{js,jsx}'",
"lint:fix": "eslint 'src/**/*.{js,jsx}' --fix",
"lint:mdx": "eslint '**/*.mdx' --ext .mdx",
"lint:fix:mdx": "eslint '**/*.mdx' --ext .mdx --fix",
"lint:lockfile": "lockfile-lint --path package-lock.json --allowed-hosts npm --allowed-schemes \"https:\" --empty-hostname false"
},
"dependencies": {
"@docusaurus/core": "^3.6.0",
"@docusaurus/plugin-content-docs": "^3.6.0",
"@docusaurus/preset-classic": "^3.6.0",
"@easyops-cn/docusaurus-search-local": "^0.40.1",
"@mdx-js/react": "^3.1.0",
"clsx": "^1.2.1",
"lucide-react": "^0.343.0",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redocusaurus": "^2.1.2"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "^3.6.0",
"@docusaurus/module-type-aliases": "^3.5.2",
"@docusaurus/tsconfig": "^3.6.0",
"@docusaurus/types": "^3.5.2",
"@eslint/js": "^9.14.0",
"@redocly/cli": "^1.25.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mdx": "^3.1.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"jsdom": "^24.0.0",
"lockfile-lint": "^4.13.2",
"prettier": "^3.1.1",
"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": ">=20"
}
}