mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 18:02:57 +00:00
* feat:added support for codesandbox * added sandbox config file * feat:added script to generate template for codesandbox * added examples:generate script to package.json file * added failing path to eslintignore * added script to eslintignore * added cleaning feature to script * deleted sandbox script in root * changed comment in codesandboxscript file * update codesandboxscript.js + revert bad package.json changes * eslint should check codesandboxscript Co-authored-by: slorber <lorber.sebastien@gmail.com>
34 lines
788 B
JSON
34 lines
788 B
JSON
{
|
|
"name": "examples-bootstrap",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"docusaurus": "docusaurus",
|
|
"start": "docusaurus start",
|
|
"build": "docusaurus build",
|
|
"swizzle": "docusaurus swizzle",
|
|
"deploy": "docusaurus deploy",
|
|
"serve": "docusaurus serve",
|
|
"dev": "docusaurus start"
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/core": "2.0.0-alpha.66",
|
|
"@docusaurus/preset-bootstrap": "2.0.0-alpha.66",
|
|
"@mdx-js/react": "^1.5.8",
|
|
"classnames": "^2.2.6",
|
|
"react": "^16.8.4",
|
|
"react-dom": "^16.8.4"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
} |