-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 958 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
{
"name": "citasmongo",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "./app/index.js",
"scripts": {
"dev": "nodemon --quiet index.js",
"tsc": "tsc -w",
"test": "mocha test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.23.9",
"chai": "^5.0.3",
"class-validator": "0.14.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "6.8.1",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"jest": "^29.7.0",
"jose": "^4.14.4",
"nodemailer": "^6.9.9",
"passport": "^0.6.0",
"passport-http-bearer": "^1.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/mongodb": "^4.0.7",
"mocha": "^10.2.0",
"mongodb": "^5.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.2"
}
}