Update dependencies

This commit is contained in:
Ramon Wenger 2022-04-12 12:36:01 +02:00
parent cff81d2419
commit 197af2644c
3 changed files with 28570 additions and 4122 deletions

View File

@ -7,7 +7,7 @@ const {merge} = require('webpack-merge');
const baseWebpackConfig = require('./webpack.base.conf'); const baseWebpackConfig = require('./webpack.base.conf');
const CopyWebpackPlugin = require('copy-webpack-plugin'); const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin'); const HtmlWebpackPlugin = require('html-webpack-plugin');
const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin'); const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const env = require('../config/prod.env'); const env = require('../config/prod.env');
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const MiniCssExtractPlugin = require('mini-css-extract-plugin');
@ -20,6 +20,11 @@ const webpackConfig = merge(baseWebpackConfig, {
filename: utils.assetsPath('js/[name].[chunkhash].js'), filename: utils.assetsPath('js/[name].[chunkhash].js'),
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js'), chunkFilename: utils.assetsPath('js/[id].[chunkhash].js'),
}, },
optimization: {
minimizer: [
new CssMinimizerPlugin()
]
},
plugins: [ plugins: [
// http://vuejs.github.io/vue-loader/en/workflow/production.html // http://vuejs.github.io/vue-loader/en/workflow/production.html
new webpack.DefinePlugin({ new webpack.DefinePlugin({

32617
client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -32,11 +32,11 @@
"@babel/polyfill": "^7.4.4", "@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.4", "@babel/preset-env": "^7.5.4",
"@babel/preset-stage-2": "^7.0.0", "@babel/preset-stage-2": "^7.0.0",
"@babel/runtime": "^7.5.4",
"@babel/preset-typescript": "^7.16.7", "@babel/preset-typescript": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@babel/runtime": "^7.5.4",
"@typescript-eslint/parser": "^5.10.0", "@graphql-tools/mock": "^8.6.5",
"@iam4x/cypress-graphql-mock": "0.0.1", "@graphql-tools/schema": "^8.3.7",
"@iam4x/cypress-graphql-mock": "^0.0.1",
"@tiptap/core": "^2.0.0-beta.174", "@tiptap/core": "^2.0.0-beta.174",
"@tiptap/extension-bullet-list": "^2.0.0-beta.26", "@tiptap/extension-bullet-list": "^2.0.0-beta.26",
"@tiptap/extension-document": "^2.0.0-beta.15", "@tiptap/extension-document": "^2.0.0-beta.15",
@ -44,17 +44,25 @@
"@tiptap/extension-paragraph": "^2.0.0-beta.23", "@tiptap/extension-paragraph": "^2.0.0-beta.23",
"@tiptap/extension-text": "^2.0.0-beta.15", "@tiptap/extension-text": "^2.0.0-beta.15",
"@tiptap/vue-2": "^2.0.0-beta.77", "@tiptap/vue-2": "^2.0.0-beta.77",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vue/composition-api": "^1.4.2", "@vue/composition-api": "^1.4.2",
"@vue/test-utils": "^1.3.0",
"appolo": "^6.0.19", "appolo": "^6.0.19",
"autoprefixer": "^7.1.2", "autoprefixer": "^7.1.2",
"babel-bridge": "^1.12.11",
"babel-core": "^7.0.0-bridge.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3", "babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6", "babel-loader": "^8.0.6",
"babel-plugin-syntax-jsx": "^6.18.0", "babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.5.0", "babel-plugin-transform-vue-jsx": "^3.5.0",
"canvas": "^2.5.0",
"chalk": "^2.0.1", "chalk": "^2.0.1",
"copy-webpack-plugin": "^10.1.0", "copy-webpack-plugin": "^10.1.0",
"css-loader": "^0.28.0", "css-loader": "^0.28.0",
"cy2": "^1.2.1", "cy2": "^1.2.1",
"cypress": "^9.5.0",
"dayjs": "^1.10.7", "dayjs": "^1.10.7",
"debounce": "^1.2.0", "debounce": "^1.2.0",
"eslint": "^7.32.0", "eslint": "^7.32.0",
@ -62,39 +70,49 @@
"eslint-friendly-formatter": "^4.0.1", "eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2", "eslint-loader": "^4.0.2",
"eslint-plugin-cypress": "^2.12.1", "eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4", "eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0", "eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0", "eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0", "eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^8.3.0", "eslint-plugin-vue": "^8.6.0",
"file-loader": "^1.1.4", "file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"graphql": "^16.1.0", "graphql": "^16.1.0",
"graphql-config": "^4.3.0",
"graphql-tag": "^2.10.1", "graphql-tag": "^2.10.1",
"graphql-tools": "^8.2.5",
"html-webpack-plugin": "^5.5.0", "html-webpack-plugin": "^5.5.0",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-graphql": "^2.1.0",
"jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^0.3.1",
"lodash": "^4.17.10", "lodash": "^4.17.10",
"mini-css-extract-plugin": "^2.4.5", "mini-css-extract-plugin": "^2.4.5",
"mock-apollo-client": "^1.2.0",
"node-notifier": "^5.1.2", "node-notifier": "^5.1.2",
"node-sass": "^4.13.1", "node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"ora": "^1.2.0", "ora": "^1.2.0",
"portfinder": "^1.0.13", "portfinder": "^1.0.13",
"postcss-import": "^11.0.0", "postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8", "postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1", "postcss-url": "^7.2.1",
"rimraf": "^2.6.0", "rimraf": "^2.6.0",
"sass-loader": "^7.1.0", "sass-loader": "^12.6.0",
"semver": "^5.3.0", "semver": "^5.3.0",
"shelljs": "^0.7.6", "shelljs": "^0.7.6",
"survey-vue": "^1.9.2", "survey-vue": "^1.9.2",
"ts-loader": "^8.3.0",
"typescript": "^4.5.4",
"typescript-tslint-plugin": "^1.0.1",
"unfetch": "^3.1.1", "unfetch": "^3.1.1",
"uploadcare-widget": "^3.6.0", "uploadcare-widget": "^3.6.0",
"url-loader": "^1.0.1", "url-loader": "^4.1.1",
"uuid": "^3.2.1", "uuid": "^3.2.1",
"vee-validate": "^3.4.14", "vee-validate": "^3.4.14",
"vue": "^2.6.14", "vue": "^2.6.14",
"vue-analytics": "^5.16.2", "vue-analytics": "^5.16.2",
"vue-apollo": "^3.1.0", "vue-apollo": "^3.1.0",
"vue-jest": "^3.0.4",
"vue-loader": "^15.9.8", "vue-loader": "^15.9.8",
"vue-matomo": "^4.1.0", "vue-matomo": "^4.1.0",
"vue-router": "^3.5.3", "vue-router": "^3.5.3",
@ -103,31 +121,14 @@
"vue-template-compiler": "^2.6.14", "vue-template-compiler": "^2.6.14",
"vue-toast-notification": "^0.4.1", "vue-toast-notification": "^0.4.1",
"vue-vimeo-player": "^0.2.2", "vue-vimeo-player": "^0.2.2",
"typescript": "^4.5.4",
"typescript-tslint-plugin": "^1.0.1",
"vuejs-logger": "1.5.5", "vuejs-logger": "1.5.5",
"vuetify": "^1.1.8", "vuetify": "^1.1.8",
"vuex": "^3.0.1", "vuex": "^3.0.1",
"webpack": "^5.65.0", "webpack": "^5.67.0",
"webpack-bundle-analyzer": "^4.5.0", "webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0", "webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0", "webpack-merge": "^5.8.0",
"@vue/test-utils": "^1.3.0",
"babel-bridge": "^1.12.11",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"canvas": "^2.5.0",
"cypress": "^9.5.0",
"graphql-config": "^3.2.0",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-graphql": "^2.1.0",
"jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^0.3.1",
"mock-apollo-client": "^1.2.0",
"ts-loader": "^8.3.0",
"vue-jest": "^3.0.4",
"webpack-cli": "^4.9.1",
"whatwg-fetch": "^3.0.0" "whatwg-fetch": "^3.0.0"
}, },
"engines": { "engines": {
@ -138,5 +139,8 @@
"> 1%", "> 1%",
"last 2 versions", "last 2 versions",
"not ie <= 8" "not ie <= 8"
] ],
"resolutions": {
"graphql": "16.3.0"
}
} }