-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 924 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 924 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
36
37
38
{
"name": "Backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -r dotenv/config ./src/server.js",
"start": "node ./src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.4.4",
"atob": "^2.1.2",
"bcrypt": "^5.0.1",
"cloudinary": "^1.25.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-list-endpoints": "^5.0.0",
"express-validator": "^6.11.1",
"fs-extra": "^10.0.0",
"http-errors": "^1.8.0",
"json2csv": "^5.0.6",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.12",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^4.0.0",
"pdfmake": "^0.1.71",
"uniqid": "^5.3.0"
},
"devDependencies": {
"dotenv": "^10.0.0",
"nodemon": "^2.0.7"
}
}