mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
29 lines
876 B
JSON
29 lines
876 B
JSON
{
|
|
"keywords": ["documentation", "websites", "open source", "docusaurus"],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/Docusaurus.git"
|
|
},
|
|
"scripts": {
|
|
"lint:v1": "cd v1 && yarn lint",
|
|
"lint:v2": "cd v2 && yarn lint",
|
|
"precommit": "lint-staged",
|
|
"prettier:v1": "cd v1 && yarn prettier",
|
|
"prettier:v2": "cd v2 && yarn prettier",
|
|
"prettier": "yarn prettier:v1 && yarn prettier:v2",
|
|
"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/**/*.js": ["yarn lint:v1 --fix", "yarn prettier:v1", "git add"],
|
|
"v2/**/*.js": ["yarn lint:v2 --fix", "yarn prettier:v2", "git add"]
|
|
}
|
|
}
|
|
}
|