Skip to content

Commit

Permalink
Merge pull request #102 from CDCNaman/main
Browse files Browse the repository at this point in the history
FIX: Yarn Package Manager
  • Loading branch information
thecuriousteam authored May 14, 2024
2 parents 1151eca + 1ab61ef commit af54847
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@remixicon/react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-router-dom": "^6.23.1"
},
"devDependencies": {
Expand Down
10 changes: 0 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,5 @@
"signal": "yarn workspace Signaling dev",
"media": "yarn workspace Media dev",
"install-mediasoup": "set MEDIASOUP_WORKER_BIN=./services/Media/Worker/mediasoup-worker.exe && yarn install"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.17",
"@mui/material": "^5.15.17",
"bcrypt": "^5.1.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.4",
"react-router-dom": "^6.23.1"
}
}
2 changes: 1 addition & 1 deletion services/Auth/src/controllers/auth.controller.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const jwt = require("jsonwebtoken");
const bcrypt = require("bcrypt");
const bcrypt = require("bcryptjs");
const User = require("../models/user.model");
const { errorHadnler } = require("../utils/error");

Expand Down
2 changes: 1 addition & 1 deletion services/Auth/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function server() {
app.use(express.json());
app.use(express.urlencoded({ extended: true }));

const authRoutes = require("../routes/auth.route");
const authRoutes = require("./routes/auth.route");

// auth routes;

Expand Down
3 changes: 3 additions & 0 deletions services/Meeting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@
},
"devDependencies": {
"nodemon": "^3.1.0"
},
"scripts": {
"dev": "nodemon index.js"
}
}
2 changes: 1 addition & 1 deletion services/Signaling/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
console.log('Meeting Service Loaded')
console.log('Signaling Service Loaded')
6 changes: 6 additions & 0 deletions services/Signaling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,11 @@
"dependencies": {
"http": "^0.0.1-security",
"socket.io": "^4.7.5"
},
"devDependencies": {
"nodemon": "^3.1.0"
},
"scripts": {
"dev": "nodemon index.js"
}
}

0 comments on commit af54847

Please sign in to comment.