mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-13 02:29:40 -06:00
83 lines
2.6 KiB
JSON
83 lines
2.6 KiB
JSON
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/@vue/*",
|
|
"packages/test/*",
|
|
"packages/vue-cli-version-marker"
|
|
],
|
|
"scripts": {
|
|
"test": "node 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": "vuepress dev docs",
|
|
"docs:build": "vuepress 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.10",
|
|
"@babel/eslint-parser": "^7.12.1",
|
|
"@typescript-eslint/eslint-plugin": "^4.9.1",
|
|
"@typescript-eslint/parser": "^4.9.1",
|
|
"@vue/eslint-config-airbnb": "^5.0.2",
|
|
"@vue/eslint-config-prettier": "^6.0.0",
|
|
"@vue/eslint-config-standard": "^6.0.0",
|
|
"@vue/eslint-config-typescript": "^7.0.0",
|
|
"@vuepress/plugin-pwa": "^1.5.4",
|
|
"@vuepress/theme-vue": "^1.5.4",
|
|
"babel-core": "7.0.0-bridge.0",
|
|
"babel-jest": "^26.6.3",
|
|
"chromedriver": "^87.0.2",
|
|
"debug": "^4.1.0",
|
|
"eslint": "^7.15.0",
|
|
"eslint-plugin-graphql": "^4.0.0",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^3.2.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-vue": "^7.2.0",
|
|
"eslint-plugin-vue-libs": "^4.0.0",
|
|
"execa": "^1.0.0",
|
|
"geckodriver": "^1.20.0",
|
|
"globby": "^9.2.0",
|
|
"graphql": "^14.6.0",
|
|
"http-server": "^0.12.3",
|
|
"inquirer": "^7.1.0",
|
|
"jest": "^26.6.3",
|
|
"lerna": "^3.22.0",
|
|
"lerna-changelog": "^1.0.1",
|
|
"lint-staged": "^10.5.3",
|
|
"memfs": "^3.2.0",
|
|
"minimist": "^1.2.5",
|
|
"node-fetch": "^2.6.1",
|
|
"prettier": ">= 1.13.0",
|
|
"rimraf": "^3.0.2",
|
|
"semver": "^7.3.4",
|
|
"typescript": "~4.1.2",
|
|
"verdaccio": "^4.10.0",
|
|
"vuepress": "^1.6.0",
|
|
"webpack": "^5.10.0",
|
|
"yorkie": "^2.0.0"
|
|
},
|
|
"resolutions": {
|
|
"puppeteer": "1.11.0",
|
|
"vue-template-compiler": "^2.6.12",
|
|
"vue-server-renderer": "^2.6.12"
|
|
}
|
|
}
|