Skip to content

Commit

Permalink
Merge pull request #48 from OHDSI/update_deps
Browse files Browse the repository at this point in the history
Package updates
  • Loading branch information
fdefalco authored Nov 22, 2021
2 parents 2b3db46 + ba18270 commit 206f1de
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 31 deletions.
44 changes: 19 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,43 +18,37 @@
},
"main": "background.js",
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"core-js": "^3.15.2",
"d3-dsv": "^2.0.0",
"d3-format": "^2.0.0",
"d3-time-format": "^3.0.0",
"electron-icon-builder": "^1.0.2",
"is-electron": "^2.2.0",
"jquery": "^3.6.0",
"axios": "^0.24.0",
"core-js": "^3.6.5",
"d3-dsv": "^3.0.1",
"d3-format": "^3.0.1",
"d3-time-format": "^4.0.0",
"electron-icon-builder": "^2.0.1",
"is-electron": "^2.2.1",
"lodash": "^4.17.21",
"markdown-it-vue": "^1.1.6",
"typescript": "^4.3.5",
"vega": "^5.20.2",
"vega-embed": "^6.18.2",
"vega-lite": "^4.17.0",
"vega-embed": "^6.20.2",
"vega-lite": "^5.1.1",
"vue": "^2.6.14",
"vue-codemirror": "^4.0.6",
"vue-google-charts": "^0.3.3",
"vue-moment": "^4.1.0",
"vue-router": "^3.5.2",
"vuetify": "^2.5.6",
"vue-router": "^3.5.3",
"vuetify": "^2.6.0",
"vuex": "^3.6.2"
},
"devDependencies": {
"@mdi/font": "^5.9.55",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@mdi/font": "^6.5.95",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-plugin-router": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"babel-eslint": "^10.1.0",
"deepmerge": "^4.2.2",
"electron": "^10.4.7",
"electron": "^16.0.1",
"electron-devtools-installer": "^3.2.0",
"eslint": "^6.7.2",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"fibers": "^5.0.0",
"sass": "^1.35.2",
"sass": "^1.43.4",
"sass-loader": "^10.2.0",
"vue-cli-plugin-electron-builder": "^2.1.1",
"vue-template-compiler": "^2.6.14"
Expand Down
11 changes: 5 additions & 6 deletions src/components/Article.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@

<div class="pa-4">
<GChart
:settings="{ packages: ['sankey'] }"
:data="chartData"
:options="chartOptions"
type="Sankey"
@ready="onChartReady"
:settings="{ packages: ['sankey'] }"
:data="chartData"
:options="chartOptions"
type="Sankey"
@ready="onChartReady"
></GChart>
</div>
</v-card>
Expand All @@ -40,7 +40,6 @@
import { GChart } from "vue-google-charts";
import axios from "axios";
import * as d3Import from "d3-dsv";
export default {
data: function () {
return {
Expand Down

0 comments on commit 206f1de

Please sign in to comment.