-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 907 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": "user-vault-api",
"version": "1.0.0",
"description": "Full-featured REST API combining user authentication and contact management, built with Express.js and MongoDB",
"main": "server.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --detectOpenHandles",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "user-vault-api"
},
"keywords": [
"nodejs",
"rest-api",
"contacts",
"authentication",
"express"
],
"author": "Leo",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"chalk": "^4.1.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.8.1",
"mongoose": "^8.6.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0"
}
}