Last active
July 9, 2021 02:38
-
-
Save adamdehaven/60c297405c27c0f816ad7bcf9f3c3224 to your computer and use it in GitHub Desktop.
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
# Current package.json has "vue": "^3.0.0" | |
❯ npm install [email protected] | |
npm ERR! code ERESOLVE | |
npm ERR! ERESOLVE unable to resolve dependency tree | |
npm ERR! | |
npm ERR! Found: [email protected] | |
npm ERR! node_modules/vue | |
npm ERR! vue@"3.1.4" from the root project | |
npm ERR! peer vue@"3.x" from @fortawesome/[email protected] | |
npm ERR! node_modules/@fortawesome/vue-fontawesome | |
npm ERR! @fortawesome/vue-fontawesome@"^3.0.0-3" from the root project | |
npm ERR! 7 more (@vue/babel-preset-app, vue-demi, vue-demi, vue-demi, ...) | |
npm ERR! | |
npm ERR! Could not resolve dependency: | |
npm ERR! peer vue@"3.0.11" from @vue/[email protected] | |
npm ERR! node_modules/@vue/compiler-sfc | |
npm ERR! peerOptional @vue/compiler-sfc@"^3.0.0-beta.14" from @vue/[email protected] | |
npm ERR! node_modules/@vue/cli-plugin-typescript | |
npm ERR! dev @vue/cli-plugin-typescript@"~4.5.0" from the root project | |
npm ERR! peerOptional @vue/compiler-sfc@"^3.0.0-beta.14" from @vue/[email protected] | |
npm ERR! node_modules/@vue/cli-service | |
npm ERR! peer @vue/cli-service@"^3.0.0 || ^4.0.0-0" from @vue/[email protected] | |
npm ERR! node_modules/@vue/cli-plugin-babel | |
npm ERR! dev @vue/cli-plugin-babel@"~4.5.0" from the root project | |
npm ERR! 5 more (@vue/cli-plugin-eslint, @vue/cli-plugin-router, ...) | |
npm ERR! 1 more (the root project) | |
npm ERR! | |
npm ERR! Fix the upstream dependency conflict, or retry | |
npm ERR! this command with --force, or --legacy-peer-deps | |
npm ERR! to accept an incorrect (and potentially broken) dependency resolution. | |
npm ERR! | |
npm ERR! See /Users/adam/.npm/eresolve-report.txt for a full report. | |
npm ERR! A complete log of this run can be found in: | |
npm ERR! /Users/adam/.npm/_logs/2021-07-09T02_34_51_732Z-debug.log |
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
{ | |
"name": "project", | |
"version": "1.0.0", | |
"private": true, | |
"scripts": { | |
"serve": "vue-cli-service serve", | |
"build": "vue-cli-service build", | |
"lint": "vue-cli-service lint", | |
"prepare": "husky install", | |
"prettier:check": "prettier --check .", | |
"prettier:fix": "prettier --write ." | |
}, | |
"dependencies": { | |
"@fortawesome/fontawesome-svg-core": "^1.2.35", | |
"@fortawesome/free-brands-svg-icons": "^5.15.3", | |
"@fortawesome/free-regular-svg-icons": "^5.15.3", | |
"@fortawesome/free-solid-svg-icons": "^5.15.3", | |
"@fortawesome/vue-fontawesome": "^3.0.0-3", | |
"@types/lodash.groupby": "^4.6.6", | |
"@vueuse/core": "^4.11.0", | |
"@vueuse/integrations": "^4.11.1", | |
"axios": "^0.21.1", | |
"bulma": "^0.9.3", | |
"chart.js": "^2.9.4", | |
"core-js": "^3.6.5", | |
"dayjs": "^1.10.4", | |
"jwt-decode": "^3.1.2", | |
"lodash.groupby": "^4.6.0", | |
"primeicons": "^4.1.0", | |
"primevue": "^3.5.0", | |
"vue": "^3.0.0", | |
"vue-clipboard3": "^1.0.1", | |
"vue-router": "^4.0.0-0", | |
"vue-toastification": "^2.0.0-rc.1", | |
"vuex": "^4.0.0-0" | |
}, | |
"devDependencies": { | |
"@typescript-eslint/eslint-plugin": "^4.18.0", | |
"@typescript-eslint/parser": "^4.18.0", | |
"@vue/cli-plugin-babel": "~4.5.0", | |
"@vue/cli-plugin-eslint": "~4.5.0", | |
"@vue/cli-plugin-router": "~4.5.0", | |
"@vue/cli-plugin-typescript": "~4.5.0", | |
"@vue/cli-plugin-vuex": "~4.5.0", | |
"@vue/cli-service": "~4.5.0", | |
"@vue/compiler-sfc": "^3.0.0", | |
"@vue/eslint-config-prettier": "^6.0.0", | |
"@vue/eslint-config-typescript": "^7.0.0", | |
"eslint": "^6.7.2", | |
"eslint-plugin-prettier": "^3.3.1", | |
"eslint-plugin-vue": "^7.0.0", | |
"husky": "^6.0.0", | |
"prettier": "^2.2.1", | |
"pretty-quick": "^3.1.0", | |
"sass": "^1.26.5", | |
"sass-loader": "^8.0.2", | |
"style-resources-loader": "^1.4.1", | |
"typescript": "~4.1.5" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment