mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
* update eslint parser * fix yarn lint script * lint-staged, lint ts files * fix TS eslint configuration + fix some lint errors (https://github.com/facebook/docusaurus/pull/2949) * eslint root + separate linting in 2 scripts * test commit * test commit * test commit * fix /// TS directive
111 lines
3.6 KiB
JSON
111 lines
3.6 KiB
JSON
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*",
|
|
"website",
|
|
"website-1.x",
|
|
"packages/docusaurus-init/templates/*"
|
|
],
|
|
"scripts": {
|
|
"start": "yarn tsc && yarn start:v2",
|
|
"start:v1": "yarn workspace docusaurus-1-website start",
|
|
"start:v2": "yarn workspace docusaurus-2-website start",
|
|
"start:v2:watch": "nodemon --watch \"./packages/*/lib/**/*.*\" --exec \"yarn start:v2\"",
|
|
"build": "yarn tsc && yarn build:v2",
|
|
"build:v1": "yarn workspace docusaurus-1-website build",
|
|
"build:v2": "yarn workspace docusaurus-2-website build",
|
|
"serve": "yarn serve:v2",
|
|
"serve:v1": "serve website-1.x/build/docusaurus",
|
|
"serve:v2": "serve website/build",
|
|
"changelog": "lerna-changelog",
|
|
"postinstall": "yarn tsc",
|
|
"prettier": "prettier --config .prettierrc --write \"**/*.{js,ts}\"",
|
|
"prettier:diff": "prettier --config .prettierrc --list-different \"**/*.{js,ts}\"",
|
|
"prettier-docs": "prettier --config .prettierrc --write \"**/*.md\"",
|
|
"lint": "yarn lint:js && yarn lint:style",
|
|
"lint:js": "eslint --cache \"**/*.{js,jsx,ts,tsx}\"",
|
|
"lint:style": "stylelint \"**/*.css\"",
|
|
"lerna": "lerna",
|
|
"test": "jest",
|
|
"test:build:v2": "./admin/scripts/test-release.sh",
|
|
"tsc": "lerna run tsc --no-private",
|
|
"watch": "yarn lerna run --parallel --no-private watch",
|
|
"clear": "yarn rimraf website/.docusaurus && rimraf -rf website/node_modules/.cache && yarn lerna exec 'yarn rimraf lib' --ignore docusaurus"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.0",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
|
"@babel/preset-typescript": "^7.9.0",
|
|
"@typescript-eslint/eslint-plugin": "^3.3.0",
|
|
"@typescript-eslint/parser": "^3.3.0",
|
|
"@types/express": "^4.17.2",
|
|
"@types/fs-extra": "^8.0.1",
|
|
"@types/inquirer": "^6.5.0",
|
|
"@types/jest": "^25.2.1",
|
|
"@types/loader-utils": "^1.1.3",
|
|
"@types/lodash.camelcase": "^4.3.6",
|
|
"@types/lodash.flatmap": "^4.5.6",
|
|
"@types/lodash.groupby": "^4.6.6",
|
|
"@types/lodash.has": "^4.5.6",
|
|
"@types/lodash.isplainobject": "^4.0.6",
|
|
"@types/lodash.isstring": "^4.0.6",
|
|
"@types/lodash.kebabcase": "^4.1.6",
|
|
"@types/lodash.pick": "^4.4.6",
|
|
"@types/lodash.pickby": "^4.6.6",
|
|
"@types/node": "^13.11.0",
|
|
"@types/react": "^16.9.13",
|
|
"@types/react-dev-utils": "^9.0.1",
|
|
"@types/semver": "^7.1.0",
|
|
"@types/shelljs": "^0.8.6",
|
|
"@types/webpack": "^4.41.0",
|
|
"@types/webpack-dev-server": "^3.9.0",
|
|
"@types/webpack-merge": "^4.1.5",
|
|
"babel-eslint": "^10.0.3",
|
|
"concurrently": "^5.2.0",
|
|
"enzyme": "^3.10.0",
|
|
"enzyme-adapter-react-16": "^1.15.1",
|
|
"eslint": "^7.2.0",
|
|
"eslint-config-airbnb": "^18.0.1",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-header": "^3.0.0",
|
|
"eslint-plugin-import": "^2.21.2",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-react": "^7.20.0",
|
|
"eslint-plugin-react-hooks": "^4.0.4",
|
|
"husky": "^4.2.3",
|
|
"jest": "^25.2.7",
|
|
"lerna": "^3.19.0",
|
|
"lerna-changelog": "^1.0.1",
|
|
"lint-staged": "^10.1.2",
|
|
"nodemon": "^2.0.4",
|
|
"prettier": "^2.0.2",
|
|
"react": "^16.8.4",
|
|
"react-dom": "^16.8.4",
|
|
"rimraf": "^3.0.2",
|
|
"serve": "^11.3.2",
|
|
"stylelint": "^13.2.1",
|
|
"typescript": "^3.7.2"
|
|
},
|
|
"peerDependencies": {
|
|
"stylelint-copyright": "^2.0.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"yarn eslint --fix",
|
|
"yarn prettier"
|
|
],
|
|
"*.md": [
|
|
"yarn prettier-docs"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=10.15.1"
|
|
}
|
|
}
|