generated from vsoch/docsy-jekyll
-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.54 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.54 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
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
75
76
77
{
"name": "bluefin-docusaurus",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "npm run fetch-data && docusaurus start --host 0.0.0.0",
"build": "npm run fetch-data && 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 .",
"prettier-lint": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"fetch-feeds": "node scripts/fetch-feeds.js",
"fetch-playlists": "node scripts/fetch-playlist-metadata.js",
"fetch-github-profiles": "node scripts/fetch-github-profiles.js",
"fetch-github-repos": "node scripts/fetch-github-repos.js",
"fetch-contributors": "node scripts/fetch-contributors.js",
"fetch-board-data": "node scripts/fetch-board-data.js",
"generate-report": "node scripts/generate-report.mjs",
"fetch-data": "npm run fetch-feeds && npm run fetch-playlists && npm run fetch-github-profiles && npm run fetch-github-repos && npm run fetch-contributors && npm run fetch-board-data"
},
"dependencies": {
"@1password/docusaurus-plugin-stored-data": "^1.0.0",
"@docusaurus/core": "^3.9.2",
"@docusaurus/faster": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@docusaurus/theme-mermaid": "^3.9.2",
"@easyops-cn/docusaurus-search-local": "^0.55.0",
"@giscus/react": "^3.1.0",
"@mdx-js/react": "^3.0.0",
"@octokit/graphql": "^9.0.3",
"caniuse-lite": "^1.0.30001727",
"clsx": "^2.0.0",
"date-fns": "^4.1.0",
"node-fetch": "^3.3.2",
"prism-react-renderer": "^2.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "3.9.2",
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/tsconfig": "3.9.2",
"@docusaurus/types": "3.9.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"prettier": "3.8.1",
"typescript": "5.9.3"
},
"overrides": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=20.0"
}
}