-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 792 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 792 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"server": "NODE_ENV=development nodemon server.js",
"start": "NODE_ENV=production node server.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend",
"client": "npm run dev --prefix ./client",
"dev": "concurrently \"npm start\" \"npm run client\""
},
"type": "module",
"keywords": [],
"author": "",
"license": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.40.0",
"concurrently": "^8.2.2",
"cookie-parser": "^1.4.6",
"cron": "^3.1.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.0",
"socket.io": "^4.7.2"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}