updated javascript dependencies

This commit is contained in:
vabene1111 2021-06-08 17:26:39 +02:00
parent b92e51c0c7
commit c71a7dad24
6 changed files with 715 additions and 778 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
Django==3.2.3
Django==3.2.4
cryptography==3.4.7
django-annoying==0.10.6
django-autocomplete-light==3.8.2
@ -34,9 +34,9 @@ django-allauth==0.44.0
recipe-scrapers==13.2.7
django-scopes==1.2.0
pytest==6.2.4
pytest-django==4.3.0
pytest-django==4.4.0
django-cors-headers==3.7.0
django-storages==1.11.1
boto3==1.17.84
boto3==1.17.89
django-prometheus==2.1.0
django-hCaptcha==0.1.0

View File

@ -10,37 +10,37 @@
"dependencies": {
"axios": "^0.21.1",
"bootstrap-vue": "^2.21.2",
"core-js": "^3.6.5",
"core-js": "^3.14.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"vue": "^2.6.11",
"vue": "^2.6.14",
"vue-class-component": "^7.2.3",
"vue-cookies": "^1.7.4",
"vue-i18n": "^8.24.3",
"vue-i18n": "^8.24.4",
"vue-multiselect": "^2.1.6",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.12",
"vue-template-compiler": "^2.6.14",
"vuedraggable": "^2.24.3",
"vuex": "^3.6.0",
"workbox-webpack-plugin": "^6.1.5"
},
"devDependencies": {
"@kazupon/vue-i18n-loader": "^0.5.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-pwa": "~4.5.0",
"@vue/cli-plugin-typescript": "^4.5.12",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-plugin-pwa": "~4.5.13",
"@vue/cli-plugin-typescript": "^4.5.13",
"@vue/cli-service": "~4.5.13",
"@vue/compiler-sfc": "^3.1.1",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-plugin-vue": "^7.0.0-0",
"typescript": "~4.2.4",
"vue-cli-plugin-i18n": "^2.1.0",
"webpack-bundle-tracker": "1.0.0-alpha.1",
"eslint": "^7.28.0",
"eslint-plugin-vue": "^7.10.0",
"typescript": "~4.3.2",
"vue-cli-plugin-i18n": "^2.1.1",
"webpack-bundle-tracker": "1.0.0",
"workbox-expiration": "^6.0.2",
"workbox-navigation-preload": "^6.0.2",
"workbox-precaching": "^6.0.2",

View File

@ -44,7 +44,7 @@ registerRoute(
);
registerRoute(
({request}) => request.destination === 'script' || request.destination === 'style',
({request}) => (request.destination === 'script' || request.destination === 'style'),
new StaleWhileRevalidate({
cacheName: 'assets'
})

File diff suppressed because it is too large Load Diff