dependecies versions updated

This commit is contained in:
Ben Elferink
2021-02-05 15:12:46 +02:00
parent 60cf80ece7
commit a895cc0647
3 changed files with 20 additions and 20 deletions

View File

@@ -48,15 +48,15 @@ Then go to your server folder (backend), and set your database within `server.js
###### Client:
> axios: ^0.21.1 &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; Use the API<br /> react: ^17.0.1
> &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; UI framework<br /> react-dom: ^17.0.1
> &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; UI framework<br /> react-scripts: ^4.0.1
> &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; Quickly launch local service
> axios: 0.21.1 &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; Use the API<br /> react: 17.0.1
> &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; UI framework<br /> react-dom: 17.0.1 &nbsp;&nbsp;&nbsp;
> ---> &nbsp;&nbsp;&nbsp; UI framework<br /> react-scripts: 4.0.2 &nbsp;&nbsp;&nbsp; --->
> &nbsp;&nbsp;&nbsp; React 'npm' scripts
###### Server:
> cors: ^2.8.5 &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; Enable HTTP requests<br/> dotenv: ^8.2.0
> &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; Secure sensitive information<br /> express: ^4.17.1
> &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; Server app<br /> mongoose: ^5.11.14 &nbsp;&nbsp;&nbsp;
> ---> &nbsp;&nbsp;&nbsp; MongoDB database<br /> morgan: ^1.10.0 &nbsp;&nbsp;&nbsp; --->
> &nbsp;&nbsp;&nbsp; Logs requests
> cors: 2.8.5 &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; Enable HTTP requests<br/> dotenv: 8.2.0
> &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; Secure sensitive information<br /> express: 4.17.1
> &nbsp;&nbsp;&nbsp; ---> &nbsp;&nbsp;&nbsp; Server app<br /> mongoose: 5.11.15 &nbsp;&nbsp;&nbsp;
> ---> &nbsp;&nbsp;&nbsp; MongoDB database<br /> morgan: 1.10.0 &nbsp;&nbsp;&nbsp; --->
> &nbsp;&nbsp;&nbsp; Logs incoming requests

View File

@@ -1,7 +1,7 @@
{
"homepage": "",
"name": "client",
"version": "1.0.0",
"version": "0.1.0",
"description": "",
"private": true,
"main": "index.js",
@@ -12,10 +12,10 @@
"eject": "react-scripts eject"
},
"dependencies": {
"axios": "^0.21.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.1"
"axios": "0.21.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-scripts": "4.0.2"
},
"eslintConfig": {
"extends": [

View File

@@ -1,7 +1,7 @@
{
"homepage": "",
"name": "server",
"version": "1.0.0",
"version": "0.1.0",
"description": "",
"main": "index.js",
"type": "module",
@@ -10,10 +10,10 @@
},
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.14",
"morgan": "^1.10.0"
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"mongoose": "5.11.15",
"morgan": "1.10.0"
}
}