Commit 9cb983f9 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Upgraded front-end dependencies; Added Vue Router and axios

parent 7c5f5d5c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
module.exports = {
  "presets": [
    [
      "@vue/app",
      "@vue/cli-plugin-babel/preset",
      {
        "useBuiltIns": "entry"
      }
+4240 −1926

File changed.

Preview size limit exceeded, changes collapsed.

+16 −14
Original line number Diff line number Diff line
@@ -8,30 +8,32 @@
    "lint": "vue-cli-service lint"
  },
  "dependencies": {
    "@fortawesome/fontawesome-svg-core": "^1.2.25",
    "@fortawesome/free-solid-svg-icons": "^5.11.2",
    "@fortawesome/vue-fontawesome": "^0.1.8",
    "@fortawesome/fontawesome-svg-core": "^1.2.29",
    "@fortawesome/free-solid-svg-icons": "^5.13.1",
    "@fortawesome/vue-fontawesome": "^0.1.10",
    "axios": "^0.19.2",
    "bootstrap-vue": "^2.1.0",
    "core-js": "^2.6.10",
    "core-js": "^3.6.5",
    "debounce": "^1.2.0",
    "vue": "^2.6.11",
    "vue-router": "^3.3.4",
    "vuex": "^3.1.2"
  },
  "devDependencies": {
    "@babel/polyfill": "^7.7.0",
    "@vue/cli-plugin-babel": "^3.12.1",
    "@vue/cli-plugin-eslint": "^3.12.1",
    "@vue/cli-service": "^3.12.1",
    "babel-eslint": "^10.0.3",
    "bootstrap": "^4.4.1",
    "@babel/polyfill": "^7.10.1",
    "@vue/cli-plugin-babel": "^4.4.6",
    "@vue/cli-plugin-eslint": "^4.4.6",
    "@vue/cli-service": "^4.4.6",
    "babel-eslint": "^10.1.0",
    "bootstrap": "^4.5.0",
    "eslint": "^5.16.0",
    "eslint-plugin-vue": "^5.0.0",
    "mutationobserver-shim": "^0.3.5",
    "mutationobserver-shim": "^0.3.7",
    "node-sass": "^4.14.1",
    "popper.js": "^1.16.0",
    "portal-vue": "^2.1.6",
    "popper.js": "^1.16.1",
    "portal-vue": "^2.1.7",
    "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"
  },
  "eslintConfig": {
+3 −0
Original line number Diff line number Diff line
@@ -8,6 +8,9 @@ import { library } from '@fortawesome/fontawesome-svg-core'
import { faTrash, faEdit, faSpinner, faFolder, faUser } from '@fortawesome/free-solid-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'

import VueRouter from 'vue-router'
Vue.use(VueRouter)

library.add(faTrash, faEdit, faSpinner, faFolder, faUser);

Vue.component('font-awesome-icon', FontAwesomeIcon);