Skip to content

Commit 7ccc1fe

Browse files
philli-mfuzzylogic2000
authored andcommitted
package.json: update required packages
1 parent 4e02190 commit 7ccc1fe

File tree

2 files changed

+23
-24
lines changed

2 files changed

+23
-24
lines changed

package.json

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
{
22
"devDependencies": {
3-
"eslint": "7.14.0",
3+
"eslint": "7.20.0",
44
"eslint-config-standard": "16.0.2",
55
"eslint-plugin-import": "2.22.1",
66
"eslint-plugin-node": "11.1.0",
7-
"eslint-plugin-promise": "4.2.1",
7+
"eslint-plugin-promise": "4.3.1",
88
"eslint-plugin-standard": "4.1.0",
99
"popper.js": "1.16.1",
10-
"stylelint": "13.8.0",
10+
"stylelint": "13.10.0",
1111
"stylelint-config-standard": "20.0.0",
12-
"webpack-cli": "4.2.0"
12+
"webpack-cli": "4.5.0"
1313
},
1414
"dependencies": {
15-
"@babel/core": "7.12.3",
16-
"@babel/plugin-transform-modules-commonjs": "7.12.1",
15+
"@babel/core": "7.12.16",
16+
"@babel/plugin-transform-modules-commonjs": "7.12.13",
1717
"@babel/plugin-transform-runtime": "7.12.1",
18-
"@babel/preset-env": "7.12.1",
19-
"@babel/preset-react": "7.12.5",
20-
"@babel/runtime": "7.12.5",
21-
"acorn": "8.0.4",
22-
"ajv": "6.12.6",
23-
"autoprefixer": "10.0.2",
24-
"babel-loader": "8.2.1",
25-
"bootstrap": "4.5.3",
26-
"css-loader": "5.0.1",
18+
"@babel/preset-env": "7.12.16",
19+
"@babel/preset-react": "7.12.13",
20+
"@babel/runtime": "7.12.13",
21+
"acorn": "8.0.5",
22+
"ajv": "7.1.1",
23+
"autoprefixer": "10.2.4",
24+
"babel-loader": "8.2.2",
25+
"bootstrap": "4.6.0",
26+
"css-loader": "5.0.2",
2727
"file-loader": "6.2.0",
2828
"glslify-loader": "2.0.0",
2929
"jquery": "3.5.1",
3030
"js-util": "git://github.com/ykob/js-util.git",
3131
"liquid-logo": "git://github.com/liqd/liquid-logo.git",
32-
"mini-css-extract-plugin": "1.3.1",
32+
"mini-css-extract-plugin": "1.3.7",
3333
"node-libs-browser": "2.2.1",
3434
"node-sass": "5.0.0",
35-
"postcss": "8.2.0",
36-
"postcss-loader": "4.0.4",
35+
"postcss": "8.2.6",
36+
"postcss-loader": "4.2.0",
3737
"raw-loader": "1.0.0",
38-
"sass-loader": "10.1.0",
39-
"terser-webpack-plugin": "4.2.3",
38+
"sass-loader": "10.1.1",
39+
"terser-webpack-plugin": "5.1.1",
4040
"url-loader": "4.1.1",
41-
"webpack": "4.44.2",
42-
"webpack-merge": "5.4.0"
41+
"webpack": "5.9.0",
42+
"webpack-merge": "5.7.3"
4343
},
4444
"scripts": {
4545
"lint": "eslint apps/core -c package.json && stylelint 'apps/core/**/*.scss' --syntax scss",

webpack.prod.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ const common = require('./webpack.common.js')
33
const TerserPlugin = require('terser-webpack-plugin')
44

55
module.exports = merge(common, {
6+
devtool: 'source-map',
67
optimization: {
78
minimizer: [
89
new TerserPlugin({
9-
sourceMap: true,
1010
parallel: true,
1111
terserOptions: {
1212
ecma: 5,
13-
arrows: false
1413
}
1514
})
1615
]

0 commit comments

Comments
 (0)