mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
* Move Docusaurus 1 into v1 directory * Update Circle CI commands for new v1 dir * Remove OC * Fix tests
24 lines
676 B
JSON
24 lines
676 B
JSON
{
|
|
"keywords": ["documentation", "websites", "open source", "docusaurus"],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/Docusaurus.git"
|
|
},
|
|
"scripts": {
|
|
"ci-check": "yarn prettier && cd v1 && yarn ci-check",
|
|
"prettier": "prettier --config .prettierrc --write \"**/*.js\"",
|
|
"prettier:diff": "prettier --config .prettierrc --list-different \"**/*.js\"",
|
|
"start": "cd v1/website && yarn start"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^0.14.3",
|
|
"lint-staged": "^7.2.0",
|
|
"prettier": "^1.13.7"
|
|
},
|
|
"lint-staged": {
|
|
"linters": {
|
|
"{v1,v2}/**/*.js": ["yarn lint --fix", "yarn prettier", "git add"]
|
|
}
|
|
}
|
|
}
|