Skip to content

Commit

Permalink
Upgrade dependencies (safe-global#138)
Browse files Browse the repository at this point in the history
* Update .eslintrc.js

Co-authored-by: Mikhail Mikheev <[email protected]>
  • Loading branch information
Daniel Sanchez and mmv08 authored Jun 30, 2021
1 parent d8adce7 commit a65864e
Show file tree
Hide file tree
Showing 7 changed files with 510 additions and 461 deletions.
15 changes: 15 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
!.eslintrc.js
build
config
contracts
flow-typed
flow-typed/npm
migrations
node_modules
public
scripts
src/assets
src/config
test
*.spec*
*.test*
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
parser: '@typescript-eslint/parser',
extends: ['plugin:@typescript-eslint/recommended', 'prettier/@typescript-eslint', 'plugin:prettier/recommended'],
extends: ['plugin:@typescript-eslint/recommended', 'prettier'],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
Expand All @@ -10,4 +10,4 @@ module.exports = {
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-unused-vars': ['error', { ignoreRestSiblings: true }],
},
};
};
4 changes: 2 additions & 2 deletions apps/compound/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"big.js": "^6.0.3",
"graphql": "^14.6.0",
"lodash": "^4.17.21",
"web3": "~1.3.0"
"web3": "~1.3.6"
},
"devDependencies": {
"@types/big.js": "^6.0.2",
"@types/lodash": "^4.14.168"
"@types/lodash": "^4.14.170"
},
"scripts": {
"start": "dotenv -e .env -- react-app-rewired start",
Expand Down
2 changes: 1 addition & 1 deletion apps/drain-safe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"@gnosis.pm/safe-react-components": "^0.6.0",
"@material-ui/core": "^4.11.0",
"bignumber.js": "^9.0.1",
"web3-eth-abi": "^1.3.5"
"web3-eth-abi": "^1.3.6"
},
"scripts": {
"start": "react-app-rewired start",
Expand Down
2 changes: 1 addition & 1 deletion apps/tx-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@material-ui/core": "^4.11.3",
"axios": "^0.21.1",
"lodash": "^4.17.21",
"web3": "~1.3.0"
"web3": "~1.3.6"
},
"scripts": {
"start": "dotenv -e .env -- react-app-rewired start",
Expand Down
30 changes: 16 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
"name": "safe-apps",
"private": true,
"scripts": {
"build": "yarn workspaces run build",
"lint:check": "eslint './apps/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "yarn lint:check --fix",
"start:compound": "yarn workspace compound start",
"start:tx-builder": "yarn workspace tx-builder start",
"start:walletconnect": "yarn workspace wallet-connect start",
"start:drain-safe": "yarn workspace drain-safe start",
"build": "yarn workspaces run build",
"test": "yarn workspaces run test --watchAll=false"
},
"version": "2.0.0",
Expand All @@ -22,29 +24,29 @@
"styled-components": "^5.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/styled-components": "^5.1.10",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel-eslint": "10.1.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.23.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.2.1",
"prettier": "^2.3.2",
"react-app-rewired": "^2.1.6",
"typescript": "^4.2.3"
"typescript": "^4.3.4"
}
}
Loading

0 comments on commit a65864e

Please sign in to comment.