-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 936 Bytes
/
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
38
39
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "cd server && node server.js",
"dev": "cd server && nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm install && npm run build"
},
"author": "2022S1_REG_31",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.16"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.28.1",
"concurrently": "^7.0.0",
"consola": "^2.15.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"googleapis": "^92.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.3",
"mongoose": "^6.1.7",
"multer": "^1.4.4",
"nodemailer": "^6.7.2",
"socket.io": "^4.5.1",
"validator": "^13.7.0"
},
"engines": {
"node": "14.18.1",
"npm": "6.14.15"
}
}