Skip to content
Snippets Groups Projects
Commit 9cb983f9 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Upgraded front-end dependencies; Added Vue Router and axios

parent 7c5f5d5c
No related branches found
No related tags found
No related merge requests found
module.exports = { module.exports = {
"presets": [ "presets": [
[ [
"@vue/app", "@vue/cli-plugin-babel/preset",
{ {
"useBuiltIns": "entry" "useBuiltIns": "entry"
} }
......
Source diff could not be displayed: it is too large. Options to address this: view the blob.
...@@ -8,30 +8,32 @@ ...@@ -8,30 +8,32 @@
"lint": "vue-cli-service lint" "lint": "vue-cli-service lint"
}, },
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25", "@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-solid-svg-icons": "^5.11.2", "@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/vue-fontawesome": "^0.1.8", "@fortawesome/vue-fontawesome": "^0.1.10",
"axios": "^0.19.2",
"bootstrap-vue": "^2.1.0", "bootstrap-vue": "^2.1.0",
"core-js": "^2.6.10", "core-js": "^3.6.5",
"debounce": "^1.2.0", "debounce": "^1.2.0",
"vue": "^2.6.11", "vue": "^2.6.11",
"vue-router": "^3.3.4",
"vuex": "^3.1.2" "vuex": "^3.1.2"
}, },
"devDependencies": { "devDependencies": {
"@babel/polyfill": "^7.7.0", "@babel/polyfill": "^7.10.1",
"@vue/cli-plugin-babel": "^3.12.1", "@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^3.12.1", "@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-service": "^3.12.1", "@vue/cli-service": "^4.4.6",
"babel-eslint": "^10.0.3", "babel-eslint": "^10.1.0",
"bootstrap": "^4.4.1", "bootstrap": "^4.5.0",
"eslint": "^5.16.0", "eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0", "eslint-plugin-vue": "^5.0.0",
"mutationobserver-shim": "^0.3.5", "mutationobserver-shim": "^0.3.7",
"node-sass": "^4.14.1", "node-sass": "^4.14.1",
"popper.js": "^1.16.0", "popper.js": "^1.16.1",
"portal-vue": "^2.1.6", "portal-vue": "^2.1.7",
"sass-loader": "^7.3.1", "sass-loader": "^7.3.1",
"vue-cli-plugin-bootstrap-vue": "^0.4.0", "vue-cli-plugin-bootstrap-vue": "^0.6.0",
"vue-template-compiler": "^2.6.11" "vue-template-compiler": "^2.6.11"
}, },
"eslintConfig": { "eslintConfig": {
......
...@@ -8,6 +8,9 @@ import { library } from '@fortawesome/fontawesome-svg-core' ...@@ -8,6 +8,9 @@ import { library } from '@fortawesome/fontawesome-svg-core'
import { faTrash, faEdit, faSpinner, faFolder, faUser } from '@fortawesome/free-solid-svg-icons' import { faTrash, faEdit, faSpinner, faFolder, faUser } from '@fortawesome/free-solid-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome' import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import VueRouter from 'vue-router'
Vue.use(VueRouter)
library.add(faTrash, faEdit, faSpinner, faFolder, faUser); library.add(faTrash, faEdit, faSpinner, faFolder, faUser);
Vue.component('font-awesome-icon', FontAwesomeIcon); Vue.component('font-awesome-icon', FontAwesomeIcon);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment