-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "chatapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon backend/server.js",
"both": "concurrently \"cd frontend && npm run start\" \"cd backend && nodemon server.js\"",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/material": "^5.15.0",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"history": "^5.3.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.3",
"nodemailer": "^6.9.8",
"nodemon": "^3.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-router-dom": "^6.15.0",
"react-scripts": "^5.0.1",
"simple-peer": "^9.11.1",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2"
}
}