Skip to content

Commit

Permalink
chore: update dependencies, proxy configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Nov 2, 2023
1 parent 0f17a64 commit 23a8cd7
Show file tree
Hide file tree
Showing 5 changed files with 1,162 additions and 994 deletions.
2 changes: 1 addition & 1 deletion components/account/home/FloatingNotification.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts" setup>
import { get } from '@vueuse/core';
import { type ContextColorsType } from '@rotki/ui-library/dist/consts/colors';
import { type ContextColorsType } from '@rotki/ui-library';
const props = withDefaults(
defineProps<{
Expand Down
4 changes: 2 additions & 2 deletions components/account/home/SubscriptionTable.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<script setup lang="ts">
import { get, set, useIntervalFn } from '@vueuse/core';
import { storeToRefs } from 'pinia';
import { type ContextColorsType } from '@rotki/ui-library/dist/consts/colors';
import { type Ref } from 'vue/dist/vue';
import {
type ContextColorsType,
type DataTableColumn,
type DataTableSortColumn,
type TablePaginationData,
} from '@rotki/ui-library';
import { type Ref } from 'vue';
import { useMainStore } from '~/store';
import { type Subscription } from '~/types';
Expand Down
3 changes: 2 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ const domain = process.env.PROXY_DOMAIN || 'localhost';
const insecureProxy = process.env.PROXY_INSECURE;
const proxyProtocol = insecureProxy === 'true' ? 'http' : 'https';
const baseUrl = `${proxyProtocol}://${domain}`;
const referrer = insecureProxy ? baseUrl : `${baseUrl}:443`;

const proxy = {
host: domain,
referrer: baseUrl,
referrer,
target: `${baseUrl}/webapi`,
};

Expand Down
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,65 +26,65 @@
"dependencies": {
"@metamask/detect-provider": "2.0.0",
"@nuxtjs/robots": "3.0.0",
"@nuxtjs/tailwindcss": "6.8.0",
"@pinia/nuxt": "0.5.0",
"@nuxtjs/tailwindcss": "6.9.3",
"@pinia/nuxt": "0.5.1",
"@vuelidate/core": "2.0.3",
"@vuelidate/validators": "2.0.4",
"@vueuse/core": "10.5.0",
"@vueuse/nuxt": "10.5.0",
"@vueuse/shared": "10.5.0",
"braintree-web": "3.97.2",
"cypress": "13.3.1",
"ethers": "6.8.0",
"braintree-web": "3.97.3",
"cypress": "13.4.0",
"ethers": "6.8.1",
"loglevel": "1.8.1",
"pinia": "2.1.7",
"qrcode": "1.5.3",
"swiper": "10.3.1",
"vue": "3.3.4",
"vue": "3.3.7",
"vue-router": "4.2.5",
"zod": "3.22.4"
},
"devDependencies": {
"@commitlint/cli": "17.8.0",
"@commitlint/config-conventional": "17.8.0",
"@commitlint/cli": "18.2.0",
"@commitlint/config-conventional": "18.1.0",
"@fontsource/roboto": "5.0.8",
"@nuxt/content": "2.8.5",
"@nuxt/devtools": "0.8.5",
"@nuxt/content": "2.9.0",
"@nuxt/devtools": "1.0.0",
"@nuxtjs/i18n": "8.0.0-beta.12",
"@rotki/eslint-config": "1.1.2",
"@rotki/ui-library": "0.5.1",
"@types/braintree-web": "3.96.7",
"@types/paypal-checkout-components": "4.0.6",
"@types/qrcode": "1.5.2",
"@vitest/coverage-c8": "0.33.0",
"@rotki/ui-library": "0.6.0",
"@types/braintree-web": "3.96.8",
"@types/paypal-checkout-components": "4.0.7",
"@types/qrcode": "1.5.4",
"@vitest/coverage-v8": "0.33.0",
"autoprefixer": "10.4.16",
"bumpp": "9.2.0",
"eslint": "8.51.0",
"eslint": "8.52.0",
"eslint-plugin-nuxt": "4.0.0",
"happy-dom": "12.9.1",
"happy-dom": "12.10.3",
"husky": "8.0.3",
"lint-staged": "15.0.1",
"lint-staged": "15.0.2",
"msw": "1.3.2",
"nuxt": "3.7.4",
"nuxt-simple-sitemap": "3.4.0",
"nuxt": "3.8.0",
"nuxt-simple-sitemap": "3.4.1",
"nuxt-vitest": "0.11.0",
"postcss": "8.4.31",
"postcss-html": "1.5.0",
"postcss-import": "15.1.0",
"postcss-url": "10.1.3",
"sass": "1.69.3",
"sass": "1.69.5",
"sass-loader": "13.3.2",
"stylelint": "15.10.3",
"stylelint": "15.11.0",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-config-standard": "34.0.0",
"stylelint-config-standard-scss": "11.0.0",
"stylelint-config-standard-scss": "11.1.0",
"stylelint-order": "6.0.3",
"stylelint-scss": "5.2.1",
"tailwindcss": "3.3.3",
"stylelint-scss": "5.3.0",
"tailwindcss": "3.3.5",
"typescript": "5.2.2",
"vite": "4.4.11",
"vite": "4.5.0",
"vitest": "0.33.0",
"vue-tsc": "1.8.19",
"vue-tsc": "1.8.22",
"webpack": "5.89.0"
},
"engines": {
Expand Down
Loading

0 comments on commit 23a8cd7

Please sign in to comment.