-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 794 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "job-search-app",
"version": "1.0.0",
"type": "module",
"description": "This particular app describes searching for a job that is relevant to their domain or area of interest. Different components can be created underneath index.js which serves as the root file. These components have program code for API calls, posting details of job search, error messages in case of wrong entry.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"express": "^4.19.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"uuid": "^10.0.0"
}
}