diff --git a/README.md b/README.md
index 289e399..59f2f2a 100644
--- a/README.md
+++ b/README.md
@@ -48,15 +48,15 @@ Then go to your server folder (backend), and set your database within `server.js
###### Client:
-> axios: ^0.21.1 ---> Use the API
react: ^17.0.1
-> ---> UI framework
react-dom: ^17.0.1
-> ---> UI framework
react-scripts: ^4.0.1
-> ---> Quickly launch local service
+> axios: 0.21.1 ---> Use the API
react: 17.0.1
+> ---> UI framework
react-dom: 17.0.1
+> ---> UI framework
react-scripts: 4.0.2 --->
+> React 'npm' scripts
###### Server:
-> cors: ^2.8.5 ---> Enable HTTP requests
dotenv: ^8.2.0
-> ---> Secure sensitive information
express: ^4.17.1
-> ---> Server app
mongoose: ^5.11.14
-> ---> MongoDB database
morgan: ^1.10.0 --->
-> Logs requests
+> cors: 2.8.5 ---> Enable HTTP requests
dotenv: 8.2.0
+> ---> Secure sensitive information
express: 4.17.1
+> ---> Server app
mongoose: 5.11.15
+> ---> MongoDB database
morgan: 1.10.0 --->
+> Logs incoming requests
diff --git a/client/package.json b/client/package.json
index df6a44f..28f82e8 100644
--- a/client/package.json
+++ b/client/package.json
@@ -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": [
diff --git a/server/package.json b/server/package.json
index f416043..1ddd563 100644
--- a/server/package.json
+++ b/server/package.json
@@ -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"
}
}