dependencies updated

This commit is contained in:
nklhrstv 2021-11-01 17:56:00 +02:00
parent b3a8ed0e4e
commit 1a779d3c55
3 changed files with 3431 additions and 6940 deletions

10280
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -12,15 +12,15 @@
"lint": "eslint src" "lint": "eslint src"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "7.12.5", "@babel/runtime": "7.16.0",
"@sentry/browser": "5.11.1", "@sentry/browser": "6.13.3",
"@stremio/stremio-colors": "4.0.1", "@stremio/stremio-colors": "4.0.1",
"@stremio/stremio-core-web": "0.26.0", "@stremio/stremio-core-web": "0.26.0",
"@stremio/stremio-icons": "3.0.5", "@stremio/stremio-icons": "3.0.5",
"@stremio/stremio-video": "0.0.14", "@stremio/stremio-video": "0.0.14",
"a-color-picker": "1.2.1", "a-color-picker": "1.2.1",
"buffer": "6.0.3", "buffer": "6.0.3",
"classnames": "2.2.6", "classnames": "2.3.1",
"eventemitter3": "4.0.7", "eventemitter3": "4.0.7",
"lodash.debounce": "4.0.8", "lodash.debounce": "4.0.8",
"lodash.isequal": "4.5.0", "lodash.isequal": "4.5.0",
@ -33,33 +33,29 @@
"spatial-navigation-polyfill": "git+https://git@github.com/Stremio/spatial-navigation.git#40204ad9942fe786794c62f99ea5ab2b52b24096" "spatial-navigation-polyfill": "git+https://git@github.com/Stremio/spatial-navigation.git#40204ad9942fe786794c62f99ea5ab2b52b24096"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.12.10", "@babel/core": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.12.1", "@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-proposal-object-rest-spread": "7.12.1", "@babel/plugin-proposal-object-rest-spread": "7.16.0",
"@babel/preset-env": "7.12.10", "@babel/preset-env": "7.16.0",
"@babel/preset-react": "7.12.10", "@babel/preset-react": "7.16.0",
"@testing-library/react": "9.4.0", "babel-loader": "8.2.3",
"@testing-library/react-hooks": "3.2.1", "clean-webpack-plugin": "4.0.0",
"babel-loader": "8.2.2", "copy-webpack-plugin": "9.0.1",
"clean-webpack-plugin": "3.0.0", "css-loader": "6.5.0",
"copy-webpack-plugin": "7.0.0", "cssnano": "5.0.8",
"css-loader": "5.0.1", "cssnano-preset-advanced": "5.1.4",
"cssnano": "4.1.10", "eslint": "7.32.0",
"cssnano-preset-advanced": "4.0.7", "eslint-plugin-react": "7.26.1",
"eslint": "7.17.0", "html-webpack-plugin": "5.5.0",
"eslint-plugin-react": "7.22.0", "jest": "27.3.1",
"file-loader": "6.2.0", "less": "4.1.2",
"html-webpack-plugin": "5.3.1", "less-loader": "10.2.0",
"jest": "24.9.0", "mini-css-extract-plugin": "2.4.3",
"less": "3.13.1", "postcss-loader": "6.2.0",
"less-loader": "7.2.1",
"mini-css-extract-plugin": "1.3.3",
"postcss-loader": "4.1.0",
"react-test-renderer": "16.13.0",
"readdirp": "3.6.0", "readdirp": "3.6.0",
"terser-webpack-plugin": "5.0.3", "terser-webpack-plugin": "5.2.4",
"webpack": "5.31.2", "webpack": "5.61.0",
"webpack-cli": "4.6.0", "webpack-cli": "4.9.1",
"webpack-dev-server": "3.11.2" "webpack-dev-server": "4.4.0"
} }
} }

View file

@ -45,10 +45,7 @@ module.exports = (env, argv) => ({
{ {
loader: MiniCssExtractPlugin.loader, loader: MiniCssExtractPlugin.loader,
options: { options: {
esModule: false, esModule: false
modules: {
namedExport: false
}
} }
}, },
{ {
@ -116,33 +113,24 @@ module.exports = (env, argv) => ({
{ {
test: /\.ttf$/, test: /\.ttf$/,
exclude: /node_modules/, exclude: /node_modules/,
loader: 'file-loader', type: 'asset/resource',
options: { generator: {
esModule: false, filename: `${COMMIT_HASH}/fonts/[name][ext][query]`
name: '[name].[ext]',
outputPath: `${COMMIT_HASH}/fonts`,
publicPath: `/${COMMIT_HASH}/fonts`
} }
}, },
{ {
test: /\.(png|jpe?g)$/, test: /\.(png|jpe?g)$/,
exclude: /node_modules/, exclude: /node_modules/,
loader: 'file-loader', type: 'asset/resource',
options: { generator: {
esModule: false, filename: `${COMMIT_HASH}/images/[name][ext][query]`
name: '[name].[ext]',
outputPath: `${COMMIT_HASH}/images`,
publicPath: `/${COMMIT_HASH}/images`
} }
}, },
{ {
test: /\.wasm$/, test: /\.wasm$/,
loader: 'file-loader', type: 'asset/resource',
options: { generator: {
esModule: false, filename: `${COMMIT_HASH}/binaries/[name][ext][query]`
name: '[name].[ext]',
outputPath: `${COMMIT_HASH}/binaries`,
publicPath: `/${COMMIT_HASH}/binaries`
} }
} }
] ]
@ -156,9 +144,8 @@ module.exports = (env, argv) => ({
}, },
devServer: { devServer: {
host: '0.0.0.0', host: '0.0.0.0',
contentBase: false, static: false,
hot: false, hot: false,
inline: false,
https: true, https: true,
liveReload: false liveReload: false
}, },