-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.57 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
{
"name": "@project-hami/website",
"repository": {
"type": "git",
"url": "https://github.com/Project-HAMi/website.git"
},
"version": "0.0.1",
"private": false,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"start:network": "./start-network.sh",
"build": "NODE_OPTIONS=\"--max-old-space-size=8192 --no-deprecation\" docusaurus build",
"build:fast": "NODE_OPTIONS=\"--max-old-space-size=8192 --no-deprecation\" docusaurus build --locale en",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"fetch-changelog": "node src/scripts/fetch-changelog.js",
"lint:md": "markdownlint 'docs/**/*.md' 'tutorials/**/*.md' 'blog/**/*.md' 'i18n/zh/docusaurus-plugin-content-docs-tutorials/current/**/*.md' 'i18n/zh/docusaurus-plugin-content-docs/current/**/*.md' 'i18n/zh/docusaurus-plugin-content-blog/**/*.md' --ignore CHANGELOG.md --ignore changelog --ignore versioned_docs --ignore node_modules",
"lint": "npm run lint:md",
"format:check": "prettier --check .",
"format": "prettier --write .",
"check-links": "DOCUSAURUS_SITE_URL=http://127.0.0.1:3000 npm run build && bash scripts/check-links.sh",
"check:all": "npm run lint && npm run format:check && npm run check-links"
},
"dependencies": {
"@docusaurus/core": "^3.10.1",
"@docusaurus/plugin-content-blog": "^3.10.1",
"@docusaurus/plugin-content-docs": "^3.10.1",
"@docusaurus/plugin-content-pages": "^3.10.1",
"@docusaurus/plugin-sitemap": "^3.10.1",
"@docusaurus/preset-classic": "^3.10.1",
"@docusaurus/theme-mermaid": "^3.10.1",
"@easyops-cn/docusaurus-search-local": "^0.55.1",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"asciinema-player": "^3.0.1",
"clsx": "^1.2.1",
"prism-react-renderer": "^2.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-github-btn": "^1.4.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@docusaurus/faster": "^3.10.1",
"@swc/core": "^1.15.18",
"gh-pages": "^6.1.1",
"markdownlint-cli": "^0.48.0",
"prettier": "^3.8.4",
"swc-loader": "^0.2.7"
}
}