Update dependencies

This commit is contained in:
Thor77 2020-06-06 12:59:13 +02:00
parent 5926226b93
commit ea72933424
No known key found for this signature in database
GPG Key ID: 5051E71B46AA669A
4 changed files with 4453 additions and 8837 deletions

6097
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,27 +14,27 @@
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@zeit/next-css": "^1.0.1", "@zeit/next-css": "^1.0.1",
"axios": "^0.18.0", "axios": "^0.19.2",
"bootstrap": "^4.1.3", "bootstrap": "^4.5.0",
"eslint-config-google": "^0.12.0", "eslint-config-google": "^0.14.0",
"express": "^4.16.4", "express": "^4.17.1",
"next": "^7.0.2", "next": "^9.4.4",
"react": "^16.6.1", "react": "^16.13.1",
"react-bootstrap": "^1.0.0-beta.9", "react-bootstrap": "^1.0.1",
"react-dom": "^16.6.1", "react-dom": "^16.13.1",
"react-favicon": "^0.0.14", "react-favicon": "^0.0.18",
"react-notify-toast": "^0.5.0", "react-notify-toast": "^0.5.1",
"react-pose": "^4.0.8", "react-pose": "^4.0.10",
"react-redux": "^5.1.1", "react-redux": "^7.2.0",
"reactstrap": "^6.5.0", "reactstrap": "^8.4.1",
"redux": "^4.0.1", "redux": "^4.0.5",
"redux-devtools-extension": "^2.13.7", "redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0" "redux-thunk": "^2.3.0"
}, },
"devDependencies": { "devDependencies": {
"eslint": "^5.16.0", "eslint": "^7.2.0",
"eslint-config-google": "^0.12.0", "eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.11.1", "eslint-plugin-react": "^7.20.0",
"react-editable-list": "0.0.3" "react-editable-list": "0.0.3"
} }
} }

View File

@ -1,8 +1,9 @@
import App, {Container} from 'next/app'; import App from 'next/app';
import React from 'react'; import React from 'react';
import {Provider} from 'react-redux'; import {Provider} from 'react-redux';
import Notifications from 'react-notify-toast'; import Notifications from 'react-notify-toast';
import Favicon from 'react-favicon'; import Favicon from 'react-favicon';
import Container from 'react-bootstrap/Container';
import withReduxStore from '../js/redux/reduxStoreBinder'; import withReduxStore from '../js/redux/reduxStoreBinder';
import {verifyCredentials} from '../js/api.js'; import {verifyCredentials} from '../js/api.js';
@ -14,13 +15,15 @@ class TurniereApp extends App {
render() { render() {
const {Component, pageProps, reduxStore} = this.props; const {Component, pageProps, reduxStore} = this.props;
return (<Container> return (
<Container fluid="true">
<Notifications /> <Notifications />
<Favicon url="/static/icons/favicon.ico"/> <Favicon url="/static/icons/favicon.ico"/>
<Provider store={reduxStore}> <Provider store={reduxStore}>
<Component {...pageProps} /> <Component {...pageProps} />
</Provider> </Provider>
</Container>); </Container>
);
} }
} }

7138
yarn.lock

File diff suppressed because it is too large Load Diff