mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-13 02:29:40 -06:00
87 lines
2.3 KiB
JSON
87 lines
2.3 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/*",
|
|
"check-links": "node scripts/checkLinks.js",
|
|
"clean": "rimraf packages/test/* packages/**/temp/*",
|
|
"sync": "node scripts/syncDeps.js",
|
|
"boot": "node scripts/bootstrap.js",
|
|
"release": "yarn --pure-lockfile && yarn clean && node scripts/release.js",
|
|
"changelog": "node scripts/genChangelog.js run",
|
|
"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"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"setupFiles": [
|
|
"<rootDir>/scripts/testSetup.js"
|
|
],
|
|
"testMatch": [
|
|
"**/__tests__/**/*.spec.js"
|
|
]
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,vue}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
],
|
|
"packages/**/bin/*": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@vue/conventional-changelog": "^0.1.1",
|
|
"babel-core": "7.0.0-bridge.0",
|
|
"babel-eslint": "^10.0.1",
|
|
"conventional-changelog": "^3.0.6",
|
|
"debug": "^4.1.0",
|
|
"eslint": "^5.14.1",
|
|
"eslint-plugin-graphql": "^3.0.3",
|
|
"eslint-plugin-node": "^8.0.0",
|
|
"eslint-plugin-vue": "^5.2.2",
|
|
"eslint-plugin-vue-libs": "^3.0.0",
|
|
"execa": "^1.0.0",
|
|
"globby": "^9.0.0",
|
|
"graphql": "^14.0.2",
|
|
"http-server": "^0.11.1",
|
|
"inquirer": "^6.0.0",
|
|
"jest": "^23.1.0",
|
|
"lerna": "^3.13.0",
|
|
"lint-staged": "^8.1.4",
|
|
"memfs": "^2.15.2",
|
|
"minimist": "^1.2.0",
|
|
"request": "^2.83.0",
|
|
"request-promise-native": "^1.0.7",
|
|
"rimraf": "^2.6.2",
|
|
"semver": "^5.5.0",
|
|
"typescript": "^3.3.3333",
|
|
"vuepress": "^0.14.9",
|
|
"vuepress-theme-vue": "^1.1.0",
|
|
"webpack": ">=4 < 4.29",
|
|
"yorkie": "^2.0.0"
|
|
},
|
|
"resolutions": {
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"babel-core": "7.0.0-bridge.0",
|
|
"ps-tree": "^1.1.1",
|
|
"puppeteer": "1.11.0",
|
|
"vue": "^2.6.7",
|
|
"vue-template-compiler": "^2.6.7",
|
|
"vue-server-renderer": "^2.6.7"
|
|
}
|
|
}
|