-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.27 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "social-auth-app",
"version": "1.0.0",
"description": "This is the auth service of app",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon",
"start": "node dist/index.js",
"build": "npx tsc -p tsconfig.build.json",
"test": "jest --runInBand --detectOpenHandles",
"test:c": "jest --coverage"
},
"keywords": [],
"author": "Cristian Talero",
"license": "ISC",
"dependencies": {
"amqplib": "^0.10.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-jsdoc-swagger": "^1.6.8",
"express-validator": "^6.14.2",
"helmet": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.0",
"morgan": "^1.10.0",
"redis": "^4.1.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@jest/types": "^28.1.1",
"@types/amqplib": "^0.8.2",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/supertest": "^2.0.12",
"jest": "^28.1.1",
"mongodb-memory-server": "^8.7.0",
"nodemon": "^2.0.16",
"supertest": "^6.2.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1"
}
}