mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-01-11 22:40:31 +00:00
dependencies updated
This commit is contained in:
parent
b3a8ed0e4e
commit
1a779d3c55
3 changed files with 3431 additions and 6940 deletions
10280
package-lock.json
generated
10280
package-lock.json
generated
File diff suppressed because it is too large
Load diff
56
package.json
56
package.json
|
|
@ -12,15 +12,15 @@
|
|||
"lint": "eslint src"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "7.12.5",
|
||||
"@sentry/browser": "5.11.1",
|
||||
"@babel/runtime": "7.16.0",
|
||||
"@sentry/browser": "6.13.3",
|
||||
"@stremio/stremio-colors": "4.0.1",
|
||||
"@stremio/stremio-core-web": "0.26.0",
|
||||
"@stremio/stremio-icons": "3.0.5",
|
||||
"@stremio/stremio-video": "0.0.14",
|
||||
"a-color-picker": "1.2.1",
|
||||
"buffer": "6.0.3",
|
||||
"classnames": "2.2.6",
|
||||
"classnames": "2.3.1",
|
||||
"eventemitter3": "4.0.7",
|
||||
"lodash.debounce": "4.0.8",
|
||||
"lodash.isequal": "4.5.0",
|
||||
|
|
@ -33,33 +33,29 @@
|
|||
"spatial-navigation-polyfill": "git+https://git@github.com/Stremio/spatial-navigation.git#40204ad9942fe786794c62f99ea5ab2b52b24096"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.12.10",
|
||||
"@babel/plugin-proposal-class-properties": "7.12.1",
|
||||
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
|
||||
"@babel/preset-env": "7.12.10",
|
||||
"@babel/preset-react": "7.12.10",
|
||||
"@testing-library/react": "9.4.0",
|
||||
"@testing-library/react-hooks": "3.2.1",
|
||||
"babel-loader": "8.2.2",
|
||||
"clean-webpack-plugin": "3.0.0",
|
||||
"copy-webpack-plugin": "7.0.0",
|
||||
"css-loader": "5.0.1",
|
||||
"cssnano": "4.1.10",
|
||||
"cssnano-preset-advanced": "4.0.7",
|
||||
"eslint": "7.17.0",
|
||||
"eslint-plugin-react": "7.22.0",
|
||||
"file-loader": "6.2.0",
|
||||
"html-webpack-plugin": "5.3.1",
|
||||
"jest": "24.9.0",
|
||||
"less": "3.13.1",
|
||||
"less-loader": "7.2.1",
|
||||
"mini-css-extract-plugin": "1.3.3",
|
||||
"postcss-loader": "4.1.0",
|
||||
"react-test-renderer": "16.13.0",
|
||||
"@babel/core": "7.16.0",
|
||||
"@babel/plugin-proposal-class-properties": "7.16.0",
|
||||
"@babel/plugin-proposal-object-rest-spread": "7.16.0",
|
||||
"@babel/preset-env": "7.16.0",
|
||||
"@babel/preset-react": "7.16.0",
|
||||
"babel-loader": "8.2.3",
|
||||
"clean-webpack-plugin": "4.0.0",
|
||||
"copy-webpack-plugin": "9.0.1",
|
||||
"css-loader": "6.5.0",
|
||||
"cssnano": "5.0.8",
|
||||
"cssnano-preset-advanced": "5.1.4",
|
||||
"eslint": "7.32.0",
|
||||
"eslint-plugin-react": "7.26.1",
|
||||
"html-webpack-plugin": "5.5.0",
|
||||
"jest": "27.3.1",
|
||||
"less": "4.1.2",
|
||||
"less-loader": "10.2.0",
|
||||
"mini-css-extract-plugin": "2.4.3",
|
||||
"postcss-loader": "6.2.0",
|
||||
"readdirp": "3.6.0",
|
||||
"terser-webpack-plugin": "5.0.3",
|
||||
"webpack": "5.31.2",
|
||||
"webpack-cli": "4.6.0",
|
||||
"webpack-dev-server": "3.11.2"
|
||||
"terser-webpack-plugin": "5.2.4",
|
||||
"webpack": "5.61.0",
|
||||
"webpack-cli": "4.9.1",
|
||||
"webpack-dev-server": "4.4.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -45,10 +45,7 @@ module.exports = (env, argv) => ({
|
|||
{
|
||||
loader: MiniCssExtractPlugin.loader,
|
||||
options: {
|
||||
esModule: false,
|
||||
modules: {
|
||||
namedExport: false
|
||||
}
|
||||
esModule: false
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
@ -116,33 +113,24 @@ module.exports = (env, argv) => ({
|
|||
{
|
||||
test: /\.ttf$/,
|
||||
exclude: /node_modules/,
|
||||
loader: 'file-loader',
|
||||
options: {
|
||||
esModule: false,
|
||||
name: '[name].[ext]',
|
||||
outputPath: `${COMMIT_HASH}/fonts`,
|
||||
publicPath: `/${COMMIT_HASH}/fonts`
|
||||
type: 'asset/resource',
|
||||
generator: {
|
||||
filename: `${COMMIT_HASH}/fonts/[name][ext][query]`
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.(png|jpe?g)$/,
|
||||
exclude: /node_modules/,
|
||||
loader: 'file-loader',
|
||||
options: {
|
||||
esModule: false,
|
||||
name: '[name].[ext]',
|
||||
outputPath: `${COMMIT_HASH}/images`,
|
||||
publicPath: `/${COMMIT_HASH}/images`
|
||||
type: 'asset/resource',
|
||||
generator: {
|
||||
filename: `${COMMIT_HASH}/images/[name][ext][query]`
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.wasm$/,
|
||||
loader: 'file-loader',
|
||||
options: {
|
||||
esModule: false,
|
||||
name: '[name].[ext]',
|
||||
outputPath: `${COMMIT_HASH}/binaries`,
|
||||
publicPath: `/${COMMIT_HASH}/binaries`
|
||||
type: 'asset/resource',
|
||||
generator: {
|
||||
filename: `${COMMIT_HASH}/binaries/[name][ext][query]`
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
@ -156,9 +144,8 @@ module.exports = (env, argv) => ({
|
|||
},
|
||||
devServer: {
|
||||
host: '0.0.0.0',
|
||||
contentBase: false,
|
||||
static: false,
|
||||
hot: false,
|
||||
inline: false,
|
||||
https: true,
|
||||
liveReload: false
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue