Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
81 lines (81 sloc)
2.57 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"private": true, | |
"workspaces": [ | |
"packages/@vue/*", | |
"packages/test/*", | |
"packages/vue-cli-version-marker" | |
], | |
"scripts": { | |
"test": "node --experimental-vm-modules scripts/test.js", | |
"pretest": "yarn clean", | |
"lint": "eslint --fix packages/**/*.js packages/**/bin/*", | |
"lint-without-fix": "eslint packages/**/*.js packages/**/bin/*", | |
"check-links": "node scripts/checkLinks.js", | |
"clean": "rimraf packages/test/* packages/**/temp/*", | |
"clean-e2e": "rimraf /tmp/verdaccio-workspace", | |
"sync": "node scripts/syncDeps.js", | |
"boot": "node scripts/bootstrap.js", | |
"release": "yarn --pure-lockfile && yarn clean && node scripts/release.js", | |
"version": "node scripts/genChangelog.js && node scripts/genDocs.js && git add CHANGELOG.md && git add docs", | |
"docs": "vitepress dev docs", | |
"docs:build": "vitepress build docs", | |
"patch-chromedriver": "node scripts/patchChromedriver.js" | |
}, | |
"gitHooks": { | |
"pre-commit": "lint-staged", | |
"commit-msg": "node scripts/verifyCommitMsg.js" | |
}, | |
"lint-staged": { | |
"*.{js,vue}": "eslint --fix", | |
"packages/**/bin/*": "eslint --fix" | |
}, | |
"devDependencies": { | |
"@babel/core": "^7.12.16", | |
"@babel/eslint-parser": "^7.12.16", | |
"@typescript-eslint/eslint-plugin": "^5.4.0", | |
"@typescript-eslint/parser": "^5.4.0", | |
"@vue/eslint-config-airbnb": "^6.0.0", | |
"@vue/eslint-config-standard": "^6.1.0", | |
"@vue/eslint-config-typescript": "^9.1.0", | |
"babel-core": "7.0.0-bridge.0", | |
"babel-jest": "^27.0.6", | |
"chromedriver": "^98.0.1", | |
"debug": "^4.1.0", | |
"docsearch.js": "^2.6.3", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-import": "^2.20.2", | |
"eslint-plugin-node": "^11.1.0", | |
"eslint-plugin-prettier": "^4.0.0", | |
"eslint-plugin-promise": "^5.1.0", | |
"eslint-plugin-vue": "^8.0.3", | |
"eslint-plugin-vuejs-accessibility": "^1.1.0", | |
"geckodriver": "^3.0.1", | |
"globby": "^11.0.2", | |
"graphql": "^15.5.0", | |
"http-server": "^0.12.3", | |
"inquirer": "^8.0.0", | |
"jest": "^27.0.6", | |
"lerna": "^4.0.0", | |
"lerna-changelog": "^2.2.0", | |
"lint-staged": "^11.1.2", | |
"memfs": "^3.2.0", | |
"minimist": "^1.2.5", | |
"node-fetch": "^2.6.7", | |
"postcss": "8.3.6", | |
"prettier": ">= 1.13.0", | |
"rimraf": "^3.0.2", | |
"semver": "^7.3.4", | |
"stylus-loader": "^3.0.2", | |
"typescript": "~4.5.5", | |
"verdaccio": "^5.0.1", | |
"vite-plugin-pwa": "^0.11.3", | |
"vitepress": "^0.20.1", | |
"webpack": "^5.54.0", | |
"yorkie": "^2.0.0" | |
}, | |
"resolutions": { | |
"puppeteer": "1.13.0" | |
}, | |
"packageManager": "yarn@1.22.11" | |
} |