-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 795 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 795 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
{
"name": "jobs-api",
"version": "1.0.0",
"description": "Backend for a hiring platform, scripted in JavaScript with JWT authentication, AWS S3 as file storage service and SendGrid for mailing services.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.299.0",
"aws-sdk": "^2.1343.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"nodemon": "^2.0.22",
"uuid": "^9.0.0"
}
}