Files
vue-cli/package.json
Wade Tandy e8aa68864c fix: fix usage with https proxy by switching from axios to request (#829)
Closes #785

Axios has a [known issue](https://github.com/axios/axios/issues/658)
that causes requests to hang when accessing an HTTPS resource via a
proxy served over HTTP.  This changes out the axios dependency for the
[request](https://github.com/request/request) library. In order to keep
`async/await` conventions easy, I also dropped in the
[request-promise-native](https://github.com/request/request-promise-native)
dependency.
2018-02-12 16:41:23 -05:00

61 lines
1.4 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/* test/**/*.js",
"clean": "rimraf packages/test/*",
"sync": "node scripts/syncDeps.js",
"boot": "node scripts/bootstrap.js",
"release": "yarn clean && node scripts/release.js"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommitMsg.js"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/scripts/testSetup.js"
],
"testPathIgnorePatterns": [
"/template/",
"/packages/test/",
"/temp/",
"/scripts/",
".*.helper.js"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"packages/**/bin/*": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"babel-core": "^7.0.0-0",
"debug": "^3.1.0",
"eslint": "^4.16.0",
"eslint-plugin-vue-libs": "^2.1.0",
"globby": "^7.1.1",
"http-server": "^0.11.1",
"jest": "^22.1.4",
"lerna": "^2.8.0",
"lint-staged": "^6.0.1",
"memfs": "^2.6.0",
"puppeteer": "^1.0.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"yorkie": "^1.0.2"
}
}