-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 KB
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
50
51
52
53
54
55
56
{
"name": "auth-service-v2",
"version": "1.0.0",
"main": "index.js",
"keywords": [
"authentication",
"jwt",
"express",
"mongodb",
"typescript",
"rest-api",
"user-management",
"password-reset",
"refresh-token"
],
"author": "Luis Bolivar",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.13.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.14.0",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"supertest": "^7.1.0",
"ts-jest": "^29.3.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn src/index.ts",
"test": "jest",
"security-audit": "node scripts/security-audit.js",
"audit": "npm audit && npm run security-audit"
}
}