mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 02:08:36 +02:00
* feat(v2): Migrate bootstrap theme to typescript * chore(v2): Add eslint rule to avoid delete import of modules * chore(v2): Add lib to gitignore * chore(v2): Add prettier script * chore(v2): change hooks to ts * fix(v2): Fix Navbar and Layout problems * fix(v2): scroll * fix(v2): navbar metadata * refactor(v2): improve css styles * chore(v2): Restore debug layout * feat(v2): Remove console.log Co-authored-by: fanny <fanny.vieira@ccc.ufcg.edu.br>
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"name": "@docusaurus/theme-bootstrap",
|
|
"version": "2.0.0-alpha.64",
|
|
"description": "Bootstrap theme for docusaurus",
|
|
"main": "src/index.js",
|
|
"types": "src/types.d.ts",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/core": "2.0.0-alpha.64",
|
|
"@docusaurus/types": "2.0.0-alpha.64",
|
|
"@docusaurus/plugin-content-blog": "2.0.0-alpha.64",
|
|
"@docusaurus/plugin-content-docs": "2.0.0-alpha.64",
|
|
"@docusaurus/plugin-content-pages": "2.0.0-alpha.64",
|
|
"@mdx-js/react": "^1.5.8",
|
|
"bootstrap": "^4.4.1",
|
|
"classnames": "^2.2.6",
|
|
"clsx": "^1.1.1",
|
|
"prism-react-renderer": "^1.1.0",
|
|
"reactstrap": "^8.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@docusaurus/module-type-aliases": "2.0.0-alpha.64"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --noEmit && yarn babel && yarn prettier",
|
|
"watch": "yarn babel --watch",
|
|
"babel": "babel src -d lib --extensions \".tsx,.ts\" --ignore \"**/*.d.ts\" --copy-files",
|
|
"prettier": "prettier --config ../../.prettierrc --write \"**/*.{js,ts}\""
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.8.4",
|
|
"react-dom": "^16.8.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.15.1"
|
|
}
|
|
}
|