update dependencies

This commit is contained in:
Francesco Esposito (franjsco) 2021-02-13 17:34:32 +01:00
parent 542e97c9ef
commit 5bed61ec19
3 changed files with 8862 additions and 6123 deletions

35
.eslintrc.js Executable file → Normal file
View File

@ -1,27 +1,22 @@
module.exports = { module.exports = {
env: { "env": {
browser: true, "browser": true,
es6: true, "es2021": true
}, },
extends: [ "extends": [
'plugin:react/recommended', "eslint:recommended",
'airbnb', "plugin:react/recommended"
], ],
globals: { "parserOptions": {
Atomics: 'readonly', "ecmaFeatures": {
SharedArrayBuffer: 'readonly', "jsx": true
}, },
parserOptions: { "ecmaVersion": 12,
ecmaFeatures: { "sourceType": "module"
jsx: true,
}, },
ecmaVersion: 2018, "plugins": [
sourceType: 'module', "react"
},
plugins: [
'react',
], ],
rules: { "rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], }
},
}; };

14884
package-lock.json generated Executable file → Normal file

File diff suppressed because it is too large Load Diff

View File

@ -9,13 +9,13 @@
"@testing-library/jest-dom": "^4.2.4", "@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0", "@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1", "@testing-library/user-event": "^7.2.1",
"axios": "^0.19.2", "axios": "^0.21.1",
"bootstrap": "^4.4.1", "bootstrap": "^4.6.0",
"prop-types": "^15.7.2", "prop-types": "^15.7.2",
"react": "^16.13.0", "react": "^16.14.0",
"react-bootstrap": "^1.0.0-beta.17", "react-bootstrap": "^1.4.3",
"react-dom": "^16.13.0", "react-dom": "^16.14.0",
"react-scripts": "3.4.0" "react-scripts": "^4.0.2"
}, },
"scripts": { "scripts": {
"start": "react-scripts start", "start": "react-scripts start",
@ -41,12 +41,8 @@
] ]
}, },
"devDependencies": { "devDependencies": {
"eslint": "^6.8.0", "eslint": "^7.20.0",
"eslint-config-airbnb": "^18.1.0", "eslint-plugin-react": "^7.22.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"gh-pages": "^2.2.0" "gh-pages": "^2.2.0"
} }
} }