Resolve "Replace Gulp with Webpack"

This commit is contained in:
sonny 2020-03-25 22:24:32 +01:00
parent 16230a11f3
commit b28d42b97b
18 changed files with 1673 additions and 1863 deletions

View file

@ -6,7 +6,9 @@
"scripts": {
"lint": "npx prettier \"src/newsreader/js/**/*.js\" --check",
"format": "npx prettier \"src/newsreader/js/**/*.js\" --write",
"watch": "npx gulp watch",
"build": "webpack --config webpack.dev.babel.js",
"build:prod": "webpack --config webpack.prod.babel.js",
"watch": "npx webpack --config webpack.dev.babel.js --watch",
"test": "npx jest",
"test:watch": "npm test -- --watch"
},
@ -17,7 +19,6 @@
"author": "Sonny",
"license": "GPL-3.0-or-later",
"dependencies": {
"globby": "^11.0.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"object-assign": "^4.1.1",
@ -38,23 +39,22 @@
"@babel/register": "^7.7.7",
"@babel/runtime": "^7.7.7",
"babel-jest": "^24.9.0",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"del": "^5.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"fetch-mock": "^8.3.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.2.0",
"gulp-concat": "^2.6.1",
"gulp-sass": "^4.0.2",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.9.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"redux-mock-store": "^1.5.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
}
}