Feature/update dependencies (#60)

* build(package.json): Update all outdated dependancies

* fix(update-dependencies): fix somes bugs after update all outdated dependencies
feature/rollback-dependencies
Clément 4 years ago committed by GitHub
parent 346a1a27a1
commit 7cc70cf750
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,38 +1,38 @@
'use strict'; "use strict";
const fs = require('fs'); const fs = require("fs");
const isWsl = require('is-wsl'); const isWsl = require("is-wsl");
const path = require('path'); const path = require("path");
const webpack = require('webpack'); const webpack = require("webpack");
const resolve = require('resolve'); const resolve = require("resolve");
const PnpWebpackPlugin = require('pnp-webpack-plugin'); const PnpWebpackPlugin = require("pnp-webpack-plugin");
const HtmlWebpackPlugin = require('html-webpack-plugin'); const HtmlWebpackPlugin = require("html-webpack-plugin");
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin'); const CaseSensitivePathsPlugin = require("case-sensitive-paths-webpack-plugin");
const InlineChunkHtmlPlugin = require('react-dev-utils/InlineChunkHtmlPlugin'); const InlineChunkHtmlPlugin = require("react-dev-utils/InlineChunkHtmlPlugin");
const TerserPlugin = require('terser-webpack-plugin'); const TerserPlugin = require("terser-webpack-plugin");
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin'); const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const safePostCssParser = require('postcss-safe-parser'); const safePostCssParser = require("postcss-safe-parser");
const ManifestPlugin = require('webpack-manifest-plugin'); const ManifestPlugin = require("webpack-manifest-plugin");
const InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin'); const InterpolateHtmlPlugin = require("react-dev-utils/InterpolateHtmlPlugin");
const WorkboxWebpackPlugin = require('workbox-webpack-plugin'); const WorkboxWebpackPlugin = require("workbox-webpack-plugin");
const WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin'); const WatchMissingNodeModulesPlugin = require("react-dev-utils/WatchMissingNodeModulesPlugin");
const ModuleScopePlugin = require('react-dev-utils/ModuleScopePlugin'); const ModuleScopePlugin = require("react-dev-utils/ModuleScopePlugin");
const getCSSModuleLocalIdent = require('react-dev-utils/getCSSModuleLocalIdent'); const getCSSModuleLocalIdent = require("react-dev-utils/getCSSModuleLocalIdent");
const paths = require('./paths'); const paths = require("./paths");
const modules = require('./modules'); const modules = require("./modules");
const getClientEnvironment = require('./env'); const getClientEnvironment = require("./env");
const ModuleNotFoundPlugin = require('react-dev-utils/ModuleNotFoundPlugin'); const ModuleNotFoundPlugin = require("react-dev-utils/ModuleNotFoundPlugin");
const ForkTsCheckerWebpackPlugin = require('react-dev-utils/ForkTsCheckerWebpackPlugin'); const ForkTsCheckerWebpackPlugin = require("react-dev-utils/ForkTsCheckerWebpackPlugin");
const typescriptFormatter = require('react-dev-utils/typescriptFormatter'); const typescriptFormatter = require("react-dev-utils/typescriptFormatter");
const postcssNormalize = require('postcss-normalize'); const postcssNormalize = require("postcss-normalize");
// Source maps are resource heavy and can cause out of memory issue for large source files. // Source maps are resource heavy and can cause out of memory issue for large source files.
const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== 'false'; const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== "false";
// Some apps do not need the benefits of saving a web request, so not inlining the chunk // Some apps do not need the benefits of saving a web request, so not inlining the chunk
// makes for a smoother build process. // makes for a smoother build process.
const shouldInlineRuntimeChunk = process.env.INLINE_RUNTIME_CHUNK !== 'false'; const shouldInlineRuntimeChunk = process.env.INLINE_RUNTIME_CHUNK !== "false";
// Check if TypeScript is setup // Check if TypeScript is setup
const useTypeScript = fs.existsSync(paths.appTsConfig); const useTypeScript = fs.existsSync(paths.appTsConfig);
@ -45,55 +45,55 @@ const sassModuleRegex = /\.module\.(scss|sass)$/;
// This is the production and development configuration. // This is the production and development configuration.
// It is focused on developer experience, fast rebuilds, and a minimal bundle. // It is focused on developer experience, fast rebuilds, and a minimal bundle.
module.exports = function(webpackEnv) { module.exports = function (webpackEnv) {
const isEnvDevelopment = webpackEnv === 'development'; const isEnvDevelopment = webpackEnv === "development";
const isEnvProduction = webpackEnv === 'production'; const isEnvProduction = webpackEnv === "production";
// Webpack uses `publicPath` to determine where the app is being served from. // Webpack uses `publicPath` to determine where the app is being served from.
// It requires a trailing slash, or the file assets will get an incorrect path. // It requires a trailing slash, or the file assets will get an incorrect path.
// In development, we always serve from the root. This makes config easier. // In development, we always serve from the root. This makes config easier.
const publicPath = isEnvProduction const publicPath = isEnvProduction
? paths.servedPath ? paths.servedPath
: isEnvDevelopment && '/'; : isEnvDevelopment && "/";
// Some apps do not use client-side routing with pushState. // Some apps do not use client-side routing with pushState.
// For these, "homepage" can be set to "." to enable relative asset paths. // For these, "homepage" can be set to "." to enable relative asset paths.
const shouldUseRelativeAssetPaths = publicPath === './'; const shouldUseRelativeAssetPaths = publicPath === "./";
// `publicUrl` is just like `publicPath`, but we will provide it to our app // `publicUrl` is just like `publicPath`, but we will provide it to our app
// as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript. // as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript.
// Omit trailing slash as %PUBLIC_URL%/xyz looks better than %PUBLIC_URL%xyz. // Omit trailing slash as %PUBLIC_URL%/xyz looks better than %PUBLIC_URL%xyz.
const publicUrl = isEnvProduction const publicUrl = isEnvProduction
? publicPath.slice(0, -1) ? publicPath.slice(0, -1)
: isEnvDevelopment && ''; : isEnvDevelopment && "";
// Get environment variables to inject into our app. // Get environment variables to inject into our app.
const env = getClientEnvironment(publicUrl); const env = getClientEnvironment(publicUrl);
// common function to get style loaders // common function to get style loaders
const getStyleLoaders = (cssOptions, preProcessor) => { const getStyleLoaders = (cssOptions, preProcessor) => {
const loaders = [ const loaders = [
isEnvDevelopment && require.resolve('style-loader'), isEnvDevelopment && require.resolve("style-loader"),
isEnvProduction && { isEnvProduction && {
loader: MiniCssExtractPlugin.loader, loader: MiniCssExtractPlugin.loader,
options: shouldUseRelativeAssetPaths ? { publicPath: '../../' } : {}, options: shouldUseRelativeAssetPaths ? { publicPath: "../../" } : {},
}, },
{ {
loader: require.resolve('css-loader'), loader: require.resolve("css-loader"),
options: cssOptions, options: cssOptions,
}, },
{ {
// Options for PostCSS as we reference these options twice // Options for PostCSS as we reference these options twice
// Adds vendor prefixing based on your specified browser support in // Adds vendor prefixing based on your specified browser support in
// package.json // package.json
loader: require.resolve('postcss-loader'), loader: require.resolve("postcss-loader"),
options: { options: {
// Necessary for external CSS imports to work // Necessary for external CSS imports to work
// https://github.com/facebook/create-react-app/issues/2677 // https://github.com/facebook/create-react-app/issues/2677
ident: 'postcss', ident: "postcss",
plugins: () => [ plugins: () => [
require('postcss-flexbugs-fixes'), require("postcss-flexbugs-fixes"),
require('postcss-preset-env')({ require("postcss-preset-env")({
autoprefixer: { autoprefixer: {
flexbox: 'no-2009', flexbox: "no-2009",
}, },
stage: 3, stage: 3,
}), }),
@ -118,14 +118,14 @@ module.exports = function(webpackEnv) {
}; };
return { return {
mode: isEnvProduction ? 'production' : isEnvDevelopment && 'development', mode: isEnvProduction ? "production" : isEnvDevelopment && "development",
// Stop compilation early in production // Stop compilation early in production
bail: isEnvProduction, bail: isEnvProduction,
devtool: isEnvProduction devtool: isEnvProduction
? shouldUseSourceMap ? shouldUseSourceMap
? 'source-map' ? "source-map"
: false : false
: isEnvDevelopment && 'cheap-module-source-map', : isEnvDevelopment && "cheap-module-source-map",
// These are the "entry points" to our application. // These are the "entry points" to our application.
// This means they will be the "root" imports that are included in JS bundle. // This means they will be the "root" imports that are included in JS bundle.
entry: [ entry: [
@ -140,7 +140,7 @@ module.exports = function(webpackEnv) {
// require.resolve('webpack-dev-server/client') + '?/', // require.resolve('webpack-dev-server/client') + '?/',
// require.resolve('webpack/hot/dev-server'), // require.resolve('webpack/hot/dev-server'),
isEnvDevelopment && isEnvDevelopment &&
require.resolve('react-dev-utils/webpackHotDevClient'), require.resolve("react-dev-utils/webpackHotDevClient"),
// Finally, this is your app's code: // Finally, this is your app's code:
paths.appIndexJs, paths.appIndexJs,
// We include the app code last so that if there is a runtime error during // We include the app code last so that if there is a runtime error during
@ -155,25 +155,26 @@ module.exports = function(webpackEnv) {
// There will be one main bundle, and one file per asynchronous chunk. // There will be one main bundle, and one file per asynchronous chunk.
// In development, it does not produce real files. // In development, it does not produce real files.
filename: isEnvProduction filename: isEnvProduction
? 'static/js/[name].[contenthash:8].js' ? "static/js/[name].[contenthash:8].js"
: isEnvDevelopment && 'static/js/bundle.js', : isEnvDevelopment && "static/js/bundle.js",
// TODO: remove this when upgrading to webpack 5 // TODO: remove this when upgrading to webpack 5
futureEmitAssets: true, futureEmitAssets: true,
// There are also additional JS chunk files if you use code splitting. // There are also additional JS chunk files if you use code splitting.
chunkFilename: isEnvProduction chunkFilename: isEnvProduction
? 'static/js/[name].[contenthash:8].chunk.js' ? "static/js/[name].[contenthash:8].chunk.js"
: isEnvDevelopment && 'static/js/[name].chunk.js', : isEnvDevelopment && "static/js/[name].chunk.js",
// We inferred the "public path" (such as / or /my-project) from homepage. // We inferred the "public path" (such as / or /my-project) from homepage.
// We use "/" in development. // We use "/" in development.
publicPath: publicPath, publicPath: publicPath,
// Point sourcemap entries to original disk location (format as URL on Windows) // Point sourcemap entries to original disk location (format as URL on Windows)
devtoolModuleFilenameTemplate: isEnvProduction devtoolModuleFilenameTemplate: isEnvProduction
? info => ? (info) =>
path path
.relative(paths.appSrc, info.absoluteResourcePath) .relative(paths.appSrc, info.absoluteResourcePath)
.replace(/\\/g, '/') .replace(/\\/g, "/")
: isEnvDevelopment && : isEnvDevelopment &&
(info => path.resolve(info.absoluteResourcePath).replace(/\\/g, '/')), ((info) =>
path.resolve(info.absoluteResourcePath).replace(/\\/g, "/")),
}, },
optimization: { optimization: {
minimize: isEnvProduction, minimize: isEnvProduction,
@ -244,7 +245,7 @@ module.exports = function(webpackEnv) {
// https://twitter.com/wSokra/status/969633336732905474 // https://twitter.com/wSokra/status/969633336732905474
// https://medium.com/webpack/webpack-4-code-splitting-chunk-graph-and-the-splitchunks-optimization-be739a861366 // https://medium.com/webpack/webpack-4-code-splitting-chunk-graph-and-the-splitchunks-optimization-be739a861366
splitChunks: { splitChunks: {
chunks: 'all', chunks: "all",
name: false, name: false,
}, },
// Keep the runtime chunk separated to enable long term caching // Keep the runtime chunk separated to enable long term caching
@ -256,7 +257,7 @@ module.exports = function(webpackEnv) {
// We placed these paths second because we want `node_modules` to "win" // We placed these paths second because we want `node_modules` to "win"
// if there are any conflicts. This matches Node resolution mechanism. // if there are any conflicts. This matches Node resolution mechanism.
// https://github.com/facebook/create-react-app/issues/253 // https://github.com/facebook/create-react-app/issues/253
modules: ['node_modules', paths.appNodeModules].concat( modules: ["node_modules", paths.appNodeModules].concat(
modules.additionalModulePaths || [] modules.additionalModulePaths || []
), ),
// These are the reasonable defaults supported by the Node ecosystem. // These are the reasonable defaults supported by the Node ecosystem.
@ -266,12 +267,12 @@ module.exports = function(webpackEnv) {
// `web` extension prefixes have been added for better support // `web` extension prefixes have been added for better support
// for React Native Web. // for React Native Web.
extensions: paths.moduleFileExtensions extensions: paths.moduleFileExtensions
.map(ext => `.${ext}`) .map((ext) => `.${ext}`)
.filter(ext => useTypeScript || !ext.includes('ts')), .filter((ext) => useTypeScript || !ext.includes("ts")),
alias: { alias: {
// Support React Native Web // Support React Native Web
// https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/ // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/
'react-native': 'react-native-web', "react-native": "react-native-web",
}, },
plugins: [ plugins: [
// Adds support for installing with Plug'n'Play, leading to faster installs and adding // Adds support for installing with Plug'n'Play, leading to faster installs and adding
@ -302,15 +303,14 @@ module.exports = function(webpackEnv) {
// It's important to do this before Babel processes the JS. // It's important to do this before Babel processes the JS.
{ {
test: /\.(js|mjs|jsx|ts|tsx)$/, test: /\.(js|mjs|jsx|ts|tsx)$/,
enforce: 'pre', enforce: "pre",
use: [ use: [
{ {
options: { options: {
formatter: require.resolve('react-dev-utils/eslintFormatter'), formatter: require.resolve("react-dev-utils/eslintFormatter"),
eslintPath: require.resolve('eslint'), eslintPath: require.resolve("eslint"),
}, },
loader: require.resolve('eslint-loader'), loader: require.resolve("eslint-loader"),
}, },
], ],
include: paths.appSrc, include: paths.appSrc,
@ -325,10 +325,10 @@ module.exports = function(webpackEnv) {
// A missing `test` is equivalent to a match. // A missing `test` is equivalent to a match.
{ {
test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/], test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
loader: require.resolve('url-loader'), loader: require.resolve("url-loader"),
options: { options: {
limit: 10000, limit: 10000,
name: 'static/media/[name].[hash:8].[ext]', name: "static/media/[name].[hash:8].[ext]",
}, },
}, },
// Process application JS with Babel. // Process application JS with Babel.
@ -336,19 +336,19 @@ module.exports = function(webpackEnv) {
{ {
test: /\.(js|mjs|jsx|ts|tsx)$/, test: /\.(js|mjs|jsx|ts|tsx)$/,
include: paths.appSrc, include: paths.appSrc,
loader: require.resolve('babel-loader'), loader: require.resolve("babel-loader"),
options: { options: {
customize: require.resolve( customize: require.resolve(
'babel-preset-react-app/webpack-overrides' "babel-preset-react-app/webpack-overrides"
), ),
plugins: [ plugins: [
[ [
require.resolve('babel-plugin-named-asset-import'), require.resolve("babel-plugin-named-asset-import"),
{ {
loaderMap: { loaderMap: {
svg: { svg: {
ReactComponent: '@svgr/webpack?-svgo,+ref![path]', ReactComponent: "@svgr/webpack?-svgo,+ref![path]",
}, },
}, },
}, },
@ -367,20 +367,20 @@ module.exports = function(webpackEnv) {
{ {
test: /\.(js|mjs)$/, test: /\.(js|mjs)$/,
exclude: /@babel(?:\/|\\{1,2})runtime/, exclude: /@babel(?:\/|\\{1,2})runtime/,
loader: require.resolve('babel-loader'), loader: require.resolve("babel-loader"),
options: { options: {
babelrc: false, babelrc: false,
configFile: false, configFile: false,
compact: false, compact: false,
presets: [ presets: [
[ [
require.resolve('babel-preset-react-app/dependencies'), require.resolve("babel-preset-react-app/dependencies"),
{ helpers: true }, { helpers: true },
], ],
], ],
cacheDirectory: true, cacheDirectory: true,
cacheCompression: isEnvProduction, cacheCompression: isEnvProduction,
// If an error happens in a package, it's possible to be // If an error happens in a package, it's possible to be
// because it was compiled. Thus, we don't want the browser // because it was compiled. Thus, we don't want the browser
// debugger to show the original code. Instead, the code // debugger to show the original code. Instead, the code
@ -430,7 +430,7 @@ module.exports = function(webpackEnv) {
importLoaders: 2, importLoaders: 2,
sourceMap: isEnvProduction && shouldUseSourceMap, sourceMap: isEnvProduction && shouldUseSourceMap,
}, },
'sass-loader' "sass-loader"
), ),
// Don't consider CSS imports dead code even if the // Don't consider CSS imports dead code even if the
// containing package claims to have no side effects. // containing package claims to have no side effects.
@ -449,7 +449,7 @@ module.exports = function(webpackEnv) {
modules: true, modules: true,
getLocalIdent: getCSSModuleLocalIdent, getLocalIdent: getCSSModuleLocalIdent,
}, },
'sass-loader' "sass-loader"
), ),
}, },
// "file" loader makes sure those assets get served by WebpackDevServer. // "file" loader makes sure those assets get served by WebpackDevServer.
@ -458,14 +458,14 @@ module.exports = function(webpackEnv) {
// This loader doesn't use a "test" so it will catch all modules // This loader doesn't use a "test" so it will catch all modules
// that fall through the other loaders. // that fall through the other loaders.
{ {
loader: require.resolve('file-loader'), loader: require.resolve("file-loader"),
// Exclude `js` files to keep "css" loader working as it injects // Exclude `js` files to keep "css" loader working as it injects
// its runtime that would otherwise be processed through "file" loader. // its runtime that would otherwise be processed through "file" loader.
// Also exclude `html` and `json` extensions so they get processed // Also exclude `html` and `json` extensions so they get processed
// by webpacks internal loaders. // by webpacks internal loaders.
exclude: [/\.(js|mjs|jsx|ts|tsx)$/, /\.html$/, /\.json$/], exclude: [/\.(js|mjs|jsx|ts|tsx)$/, /\.html$/, /\.json$/],
options: { options: {
name: 'static/media/[name].[hash:8].[ext]', name: "static/media/[name].[hash:8].[ext]",
}, },
}, },
// ** STOP ** Are you adding a new loader? // ** STOP ** Are you adding a new loader?
@ -538,17 +538,17 @@ module.exports = function(webpackEnv) {
new MiniCssExtractPlugin({ new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output // Options similar to the same options in webpackOptions.output
// both options are optional // both options are optional
filename: 'static/css/[name].[contenthash:8].css', filename: "static/css/[name].[contenthash:8].css",
chunkFilename: 'static/css/[name].[contenthash:8].chunk.css', chunkFilename: "static/css/[name].[contenthash:8].chunk.css",
}), }),
// Generate a manifest file which contains a mapping of all asset filenames // Generate a manifest file which contains a mapping of all asset filenames
// to their corresponding output file so that tools can pick it up without // to their corresponding output file so that tools can pick it up without
// having to parse `index.html`. // having to parse `index.html`.
new ManifestPlugin({ new ManifestPlugin({
fileName: 'asset-manifest.json', fileName: "asset-manifest.json",
publicPath: publicPath, publicPath: publicPath,
generate: (seed, files) => { generate: (seed, files) => {
const manifestFiles = files.reduce(function(manifest, file) { const manifestFiles = files.reduce(function (manifest, file) {
manifest[file.name] = file.path; manifest[file.name] = file.path;
return manifest; return manifest;
}, seed); }, seed);
@ -570,20 +570,19 @@ module.exports = function(webpackEnv) {
new WorkboxWebpackPlugin.GenerateSW({ new WorkboxWebpackPlugin.GenerateSW({
clientsClaim: true, clientsClaim: true,
exclude: [/\.map$/, /asset-manifest\.json$/], exclude: [/\.map$/, /asset-manifest\.json$/],
importWorkboxFrom: 'cdn', navigateFallback: publicUrl + "/index.html",
navigateFallback: publicUrl + '/index.html', navigateFallbackDenylist: [
navigateFallbackBlacklist: [
// Exclude URLs starting with /_, as they're likely an API call // Exclude URLs starting with /_, as they're likely an API call
new RegExp('^/_'), new RegExp("^/_"),
// Exclude URLs containing a dot, as they're likely a resource in // Exclude URLs containing a dot, as they're likely a resource in
// public/ and not a SPA route // public/ and not a SPA route
new RegExp('/[^/]+\\.[^/]+$'), new RegExp("/[^/]+\\.[^/]+$"),
], ],
}), }),
// TypeScript type checking // TypeScript type checking
useTypeScript && useTypeScript &&
new ForkTsCheckerWebpackPlugin({ new ForkTsCheckerWebpackPlugin({
typescript: resolve.sync('typescript', { typescript: resolve.sync("typescript", {
basedir: paths.appNodeModules, basedir: paths.appNodeModules,
}), }),
async: isEnvDevelopment, async: isEnvDevelopment,
@ -597,11 +596,11 @@ module.exports = function(webpackEnv) {
: undefined, : undefined,
tsconfig: paths.appTsConfig, tsconfig: paths.appTsConfig,
reportFiles: [ reportFiles: [
'**', "**",
'!**/__tests__/**', "!**/__tests__/**",
'!**/?(*.)(spec|test).*', "!**/?(*.)(spec|test).*",
'!**/src/setupProxy.*', "!**/src/setupProxy.*",
'!**/src/setupTests.*', "!**/src/setupTests.*",
], ],
watch: paths.appSrc, watch: paths.appSrc,
silent: true, silent: true,
@ -612,14 +611,14 @@ module.exports = function(webpackEnv) {
// Some libraries import Node modules but don't use them in the browser. // Some libraries import Node modules but don't use them in the browser.
// Tell Webpack to provide empty mocks for them so importing them works. // Tell Webpack to provide empty mocks for them so importing them works.
node: { node: {
module: 'empty', module: "empty",
dgram: 'empty', dgram: "empty",
dns: 'mock', dns: "mock",
fs: 'empty', fs: "empty",
http2: 'empty', http2: "empty",
net: 'empty', net: "empty",
tls: 'empty', tls: "empty",
child_process: 'empty', child_process: "empty",
}, },
// Turn off performance processing because we utilize // Turn off performance processing because we utilize
// our own hints via the FileSizeReporter // our own hints via the FileSizeReporter

15350
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -3,86 +3,86 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@babel/core": "7.4.3", "@babel/core": "7.11.6",
"@fortawesome/fontawesome-free": "^5.9.0", "@fortawesome/fontawesome-free": "^5.14.0",
"@fortawesome/fontawesome-svg-core": "^1.2.19", "@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.13.0", "@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0", "@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.4", "@fortawesome/react-fontawesome": "^0.1.11",
"@svgr/webpack": "4.1.0", "@svgr/webpack": "5.4.0",
"@typescript-eslint/eslint-plugin": "2.29.0", "@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "2.29.0", "@typescript-eslint/parser": "4.1.1",
"axios": "^0.19.0", "axios": "^0.20.0",
"babel-eslint": "^10.1.0", "babel-eslint": "^10.1.0",
"babel-jest": "^24.8.0", "babel-jest": "^26.3.0",
"babel-loader": "8.0.5", "babel-loader": "8.1.0",
"babel-plugin-named-asset-import": "^0.3.2", "babel-plugin-named-asset-import": "^0.3.6",
"babel-preset-react-app": "^9.0.0", "babel-preset-react-app": "^9.1.2",
"bootstrap": "^4.3.1", "bootstrap": "^4.5.2",
"camelcase": "^5.2.0", "camelcase": "^6.0.0",
"case-sensitive-paths-webpack-plugin": "2.2.0", "case-sensitive-paths-webpack-plugin": "2.3.0",
"css-loader": "2.1.1", "css-loader": "4.3.0",
"dotenv": "6.2.0", "dotenv": "8.2.0",
"dotenv-expand": "4.2.0", "dotenv-expand": "5.1.0",
"enzyme": "^3.9.0", "enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.13.1", "enzyme-adapter-react-16": "^1.15.4",
"eslint": "^6.8.0", "eslint": "^7.9.0",
"eslint-config-react-app": "^5.2.1", "eslint-config-react-app": "^5.2.1",
"eslint-loader": "4.0.2", "eslint-loader": "4.0.2",
"eslint-plugin-flowtype": "4.7.0", "eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.20.2", "eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.2.3", "eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.19.0", "eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "^3.0.0", "eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "3.0.1", "file-loader": "6.1.0",
"fs-extra": "7.0.1", "fs-extra": "9.0.1",
"global": "^4.4.0", "global": "^4.4.0",
"html-webpack-plugin": "4.0.0-beta.5", "html-webpack-plugin": "4.4.1",
"i18next": "^19.4.1", "i18next": "^19.7.0",
"i18next-browser-languagedetector": "^4.0.2", "i18next-browser-languagedetector": "^6.0.1",
"i18next-xhr-backend": "^3.2.2", "i18next-xhr-backend": "^3.2.2",
"identity-obj-proxy": "3.0.0", "identity-obj-proxy": "3.0.0",
"is-wsl": "^1.1.0", "is-wsl": "^2.2.0",
"jest": "24.7.1", "jest": "26.4.2",
"jest-environment-jsdom-fourteen": "0.1.0", "jest-environment-jsdom-fourteen": "1.0.1",
"jest-resolve": "24.7.1", "jest-resolve": "26.4.0",
"jest-watch-typeahead": "0.3.0", "jest-watch-typeahead": "0.6.1",
"mini-css-extract-plugin": "0.5.0", "mini-css-extract-plugin": "0.11.2",
"node-sass": "^4.12.0", "node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "5.0.1", "npm-check-updates": "^9.0.1",
"pnp-webpack-plugin": "1.2.1", "optimize-css-assets-webpack-plugin": "5.0.4",
"postcss-flexbugs-fixes": "4.1.0", "pnp-webpack-plugin": "1.6.4",
"postcss-loader": "3.0.0", "postcss-flexbugs-fixes": "4.2.1",
"postcss-normalize": "7.0.1", "postcss-normalize": "9.0.0",
"postcss-preset-env": "6.6.0", "postcss-preset-env": "6.7.0",
"postcss-safe-parser": "4.0.1", "postcss-safe-parser": "5.0.1",
"prop-types": "^15.7.2", "prop-types": "^15.7.2",
"query-string": "^6.12.0", "query-string": "^6.13.2",
"querystringify": "^2.0.0", "querystringify": "^2.2.0",
"react": "^16.8.6", "react": "^16.13.1",
"react-app-polyfill": "^1.0.1", "react-app-polyfill": "^1.0.6",
"react-dev-utils": "^9.0.1", "react-dev-utils": "10.0.0",
"react-dom": "^16.8.6", "react-dom": "^16.13.1",
"react-flag-icon-css": "^1.0.25", "react-flag-icon-css": "^1.0.25",
"react-flags-select": "^1.1.12", "react-flags-select": "^1.1.13",
"react-i18next": "^11.3.4", "react-i18next": "^11.7.2",
"react-loader-spinner": "^3.1.14", "react-loader-spinner": "^3.1.14",
"react-multi-email": "^0.5.3", "react-multi-email": "^0.5.3",
"react-router-dom": "^5.0.0", "react-router-dom": "^5.2.0",
"react-sortable-hoc": "^1.9.1", "react-sortable-hoc": "^1.11.0",
"react-toastify": "^5.2.1", "react-toastify": "^6.0.8",
"reactstrap": "^8.0.0", "reactstrap": "^8.6.0",
"resolve": "1.10.0", "resolve": "1.17.0",
"sass-loader": "7.1.0", "sass-loader": "10.0.2",
"semver": "6.0.0", "semver": "7.3.2",
"style-loader": "0.23.1", "style-loader": "1.2.1",
"terser-webpack-plugin": "1.2.3", "terser-webpack-plugin": "4.2.2",
"ts-pnp": "1.1.2", "ts-pnp": "1.2.0",
"url-loader": "1.1.2", "url-loader": "4.1.0",
"webpack": "4.29.6", "webpack": "4.44.2",
"webpack-dev-server": "3.2.1", "webpack-dev-server": "3.11.0",
"webpack-manifest-plugin": "2.0.4", "webpack-manifest-plugin": "2.2.0",
"workbox-webpack-plugin": "4.2.0" "workbox-webpack-plugin": "5.1.4"
}, },
"scripts": { "scripts": {
"start": "node scripts/start.js", "start": "node scripts/start.js",
@ -160,6 +160,7 @@
}, },
"devDependencies": { "devDependencies": {
"i18next-scanner": "^2.11.0", "i18next-scanner": "^2.11.0",
"prettier": "1.19.1" "postcss-loader": "~3.0.0",
"prettier": "2.1.2"
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

@ -42,7 +42,7 @@ body,
} }
main { main {
background-image: url("/background-mv.png"); background-image: url("../img/background-mv.png");
background-size: 100%; background-size: 100%;
background-attachment: fixed; background-attachment: fixed;
background-repeat: no-repeat; background-repeat: no-repeat;

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save