Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

moderate security vulnerabilities fixed #871

Merged
merged 2 commits into from
Aug 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
module.exports = {
extends: [
'codfish',
'eslint:recommended',
'plugin:react/recommended',
'plugin:prettier/recommended',
],
extends: ['codfish', 'eslint:recommended', 'plugin:prettier/recommended'],
rules: {
'no-underscore-dangle': 'off',
'no-console': 'off',
Expand All @@ -23,9 +18,6 @@ module.exports = {
sourceType: 'module', // Allows for the use of imports
},
settings: {
react: {
version: 'latest',
},
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
Expand Down
1,071 changes: 627 additions & 444 deletions apps/challenger/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/challenger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"pino": "^8.3.1",
"pino-pretty": "^8.1.0",
"reconnecting-websocket": "^4.4.0",
"web3": "^1.6.1",
"web3": "^1.7.5",
"ws": "^8.2.3"
}
}
1,087 changes: 634 additions & 453 deletions apps/proposer/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/proposer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"pino": "^8.3.1",
"pino-pretty": "^8.1.0",
"reconnecting-websocket": "^4.4.0",
"web3": "^1.6.1",
"web3": "^1.7.5",
"ws": "^8.2.3"
}
}
1,071 changes: 627 additions & 444 deletions apps/synchronizer/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/synchronizer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"pino": "^8.3.1",
"pino-pretty": "^8.1.0",
"reconnecting-websocket": "^4.4.0",
"web3": "^1.6.1",
"web3": "^1.7.5",
"ws": "^8.2.3"
}
}
3,010 changes: 1,608 additions & 1,402 deletions cli/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"pino": "^8.3.1",
"queue": "^6.0.2",
"reconnecting-websocket": "^4.4.0",
"web3": "^1.5.2",
"web3": "^1.7.5",
"ws": "^8.2.2",
"yargs": "^17.2.1"
},
Expand Down
Loading