-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 995 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 995 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
29
30
31
32
33
34
35
36
{
"name": "mycontacts-backend-api",
"version": "1.0.0",
"description": "This is express project for the contacts backend api",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"swagger": "node Docs/swagger.js && node Docs/addTags.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.5.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"express-oas-generator": "^1.0.46",
"express-rate-limit": "^8.0.1",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"pdfkit": "^0.17.1",
"pg": "^8.13.3",
"prisma": "^6.5.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/mongoose": "^5.11.97",
"swagger-autogen": "^2.23.7"
}
}