test: move axios to dev dependencies
In nuxt having axios instead of @nuxtjs/axios is causing import problems. If this fixes it there might be a better solution.
Showing
... | ... | @@ -32,7 +32,6 @@ |
"*.**": "prettier --check --ignore-unknown" | ||
}, | ||
"dependencies": { | ||
"axios": "^1.2.2", | ||
"faye-websocket": "^0.11.4", | ||
"swagger-model-validator": "^3.0.21" | ||
}, | ||
... | ... | @@ -43,6 +42,7 @@ |
"@commitlint/config-conventional": "^15.0.0", | ||
"@cucumber/cucumber": "^8.10.0", | ||
"@rollup/plugin-babel": "^6.0.3", | ||
"axios": "^1.2.3", | ||
"axios-mock-adapter": "^1.21.2", | ||
"babel-jest": "^27.4.4", | ||
"cross-env": "^7.0.3", | ||
... | ... |
Please register or sign in to comment