-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.15 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.15 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"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-github-driver-versions": "node scripts/fetch-github-driver-versions.js",
"fetch-github-images": "node scripts/fetch-github-images.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-sbom": "node scripts/fetch-github-sbom.js",
"fetch-firehose": "node scripts/fetch-firehose.js",
"generate-card-images": "node scripts/generate-card-images.mjs",
"fetch-data": "npm run fetch-feeds && npm run fetch-playlists && npm run fetch-github-profiles && npm run fetch-github-repos && npm run fetch-github-driver-versions && npm run fetch-github-images && npm run fetch-contributors && npm run fetch-firehose",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"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",
"react-icons": "^5.6.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",
"@fontsource/inter": "^5.2.8",
"@playwright/test": "1.59.1",
"@resvg/resvg-js": "^2.6.2",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"eslint": "8.57.1",
"prettier": "3.8.1",
"satori": "^0.26.0",
"typescript": "6.0.2"
},
"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"
}
}