Squashed commit of the following:

commit f6174179405cbf696415b17bbfcb157b6c3415cf
Author: sonny <sonnyba871@gmail.com>
Date:   Thu Jan 2 23:26:49 2020 +0100

    redux tests
This commit is contained in:
Sonny 2020-01-30 20:29:32 +01:00
parent 62e763604e
commit c3b087e004
20 changed files with 4733 additions and 56 deletions

View file

@ -5,7 +5,10 @@
"main": "index.js",
"scripts": {
"lint": "prettier \"src/newsreader/js/**/*.js\" --check",
"format": "prettier \"src/newsreader/js/**/*.js\" --write"
"format": "prettier \"src/newsreader/js/**/*.js\" --write",
"watch": "npx gulp watch",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
@ -16,6 +19,7 @@
"dependencies": {
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"object-assign": "^4.1.1",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
@ -32,18 +36,23 @@
"@babel/preset-env": "^7.7.7",
"@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",
"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",
"node-fetch": "^2.6.0",
"node-sass": "^4.13.0",
"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"
}