mirror of
https://github.com/mleem97/gregWiki.git
synced 2026-04-10 19:19:18 +02:00
- Changed project title and tagline in docusaurus.config.js to reflect the new branding. - Updated package.json and package-lock.json to rename the project to gregwiki-docs-site. - Adjusted sidebar and documentation files to align with the new project structure and naming conventions. - Enhanced documentation content for clarity and consistency across various sections. - Added Prettier as a development dependency for code formatting. This commit aligns the project with the new branding and improves overall documentation structure.
43 lines
1.7 KiB
JSON
43 lines
1.7 KiB
JSON
{
|
|
"name": "gregwiki-docs-site",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "docusaurus clear && docusaurus build && docusaurus start --host 0.0.0.0 --port 3000",
|
|
"start": "docusaurus start --host 0.0.0.0 --port 3000",
|
|
"build": "docusaurus build",
|
|
"serve": "docusaurus serve",
|
|
"clear": "docusaurus clear",
|
|
"wiki:sync": "node ./scripts/sync-wiki-to-docs.mjs",
|
|
"wiki:normalize-i18n": "node ./scripts/normalize-wiki-import-i18n.mjs",
|
|
"wiki:refresh": "node ./scripts/sync-wiki-to-docs.mjs && node ./scripts/normalize-wiki-import-i18n.mjs",
|
|
"format": "prettier --write src scripts docusaurus.config.js sidebars.js README.md docs/README.md package.json .prettierrc.json",
|
|
"format:check": "prettier --check src scripts docusaurus.config.js sidebars.js README.md docs/README.md package.json .prettierrc.json"
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/core": "3.9.2",
|
|
"@docusaurus/plugin-client-redirects": "^3.9.2",
|
|
"@docusaurus/plugin-content-docs": "^3.9.2",
|
|
"@docusaurus/plugin-content-pages": "^3.9.2",
|
|
"@docusaurus/plugin-css-cascade-layers": "^3.9.2",
|
|
"@docusaurus/plugin-sitemap": "^3.9.2",
|
|
"@docusaurus/plugin-svgr": "^3.9.2",
|
|
"@docusaurus/preset-classic": "3.9.2",
|
|
"@docusaurus/theme-live-codeblock": "^3.9.2",
|
|
"@docusaurus/theme-search-algolia": "^3.9.2",
|
|
"@tailwindcss/postcss": "^4.2.2",
|
|
"@tsparticles/engine": "^3.9.1",
|
|
"@tsparticles/react": "^3.0.0",
|
|
"@tsparticles/slim": "^3.9.1",
|
|
"framer-motion": "^12.38.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-icons": "^5.6.0",
|
|
"tailwindcss": "^4.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@docusaurus/eslint-plugin": "^3.9.2",
|
|
"prettier": "^3.5.3"
|
|
}
|
|
}
|