Skip to content

Commit

Permalink
bumps all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Solís committed May 11, 2020
1 parent 82d849e commit 1910b0a
Show file tree
Hide file tree
Showing 3 changed files with 2,843 additions and 1,868 deletions.
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"singleQuote": true,
"arrowParens": "avoid"
}

58 changes: 36 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,23 @@
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lint": "eslint src/",
"prepublishOnly": "npm run lint && npm run flow && npm run test && npm run build",
"prettier": "eslint src --fix",
"eslint": "eslint src --fix",
"prettier": "--config .prettierrc --write",
"test": "jest",
"test:watch": "jest --watch",
"watch": "npm run build -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --config .prettierrc --write",
"eslint -c .eslintrc.json --ext .jsx,.js --fix"
]
},
"jest": {
"rootDir": "src"
},
Expand All @@ -30,34 +42,36 @@
},
"homepage": "https://github.com/redux-offline/redux-offline#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-flow-strip-types": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.12.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"flow-bin": "^0.103.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"redux": "^4.0.4",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"flow-bin": "^0.124.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"redux": "^4.0.5",
"redux-devtools-instrument": "^1.9.6",
"redux-logger": "^3.0.6",
"redux-persist-node-storage": "^1.0.2",
"release": "^6.0.1"
"release": "^6.1.0"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"@babel/runtime": "^7.9.6",
"redux-persist": "^4.6.0"
},
"peerDependencies": {
Expand Down

0 comments on commit 1910b0a

Please sign in to comment.