-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 831 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 831 Bytes
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
{
"name": "mern2",
"version": "1.0.0",
"description": "MERN Status page",
"main": "server.js",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Nahuel",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/material": "^5.8.7",
"axios": "^0.27.2",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"mongoose": "^6.4.4",
"node-cron": "^3.0.1",
"react-router-dom": "^6.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"concurrently": "^7.2.2",
"nodemon": "^2.0.19"
}
}