-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1010 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
34
35
{
"name": "av9hub",
"version": "1.0.0",
"description": "Av9Hub - A full-stack social media dashboard with MERN stack",
"main": "server/server.js",
"scripts": {
"server": "nodemon server/server.js",
"client": "npm run dev --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm install --prefix client && npm run build --prefix client",
"start": "node server/server.js",
"vercel-build": "cd client && npm install && npm run build"
},
"keywords": ["mern", "social-media", "react", "express", "mongodb"],
"author": "",
"license": "ISC",
"engines": {
"node": ">=18.x"
},
"dependencies": {
"express": "^4.18.2",
"mongoose": "^8.0.3",
"dotenv": "^16.3.1",
"cors": "^2.8.5",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"cloudinary": "^1.41.0",
"express-validator": "^7.0.1"
},
"devDependencies": {
"nodemon": "^3.0.2",
"concurrently": "^8.2.2"
}
}