-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 999 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
40
41
42
43
44
{
"name": "contact-book-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "node --watch server.js",
"test": "jest"
},
"keywords": [],
"author": "ghost",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"base-64": "^1.0.0",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"dotenv": "^16.0.1",
"express": "^4.19.2",
"express-session": "^1.18.0",
"helmet": "^5.1.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^6.3.3",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"redis": "^3.1.2",
"supertest": "^7.0.0",
"swagger-jsdoc": "5.0.1",
"swagger-ui-express": "^5.0.1",
"validator": "^13.7.0",
"winston": "^3.7.2"
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"babel-jest": "^29.7.0"
}
}