I encountered an issue with vulnerabilities in my app and now it won't run.
The error message I'm receiving is:
It says this dependency was not found:
- firebase in ./src/main.js, ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/Navigation.vue?vue&type=script&lang=js and 1 other
To fix this, you can try running: npm install --save firebase There's also an error from chokidar (C:): Error: EBUSY: resource busy or locked, lstat 'C:\DumpStack.log.tmp'
Here is a snippet of my package.json file:
{
"name": "poker-app",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"chart.js": "^3.6.2",
"core-js": "^3.6.5",
"firebase": "^9.6.1",
"generatorics": "^1.1.0",
"itertools": "^1.7.1",
"vue": "^3.0.0",
"vue-chartkick": "^0.6.1",
"vue-echarts": "^6.0.0",
"vue-router": "^4.0.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0"
}
}
Does anyone have any insights on how to resolve this?