-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 KB
/
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
{
"name": "contact-manager-api",
"version": "1.0.0",
"description": "A scalable and efficient backend application built from scratch to manage contacts. This project is designed to handle CRUD operations for contacts with robust authentication and data management features.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mayurr7/Contact-Manager-Backend-Application.git"
},
"author": "Mayur Tekale",
"license": "MIT",
"bugs": {
"url": "https://github.com/mayurr7/Contact-Manager-Backend-Application/issues"
},
"homepage": "https://github.com/mayurr7/Contact-Manager-Backend-Application#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.2"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}