-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "user-management",
"version": "1.0.0",
"description": "",
"main": "nodemon server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec ts-node server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/joi": "^17.2.3",
"bcryptjs": "^2.4.3",
"cluster": "^0.7.7",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-useragent": "^1.0.15",
"joi": "^17.12.1",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.1.1",
"nodemailer": "^6.9.9",
"nodemon": "^3.0.3",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"sweetalert2": "^11.10.5"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/express-useragent": "^1.0.5",
"@types/jsonwebtoken": "^9.0.5",
"@types/nodemailer": "^6.4.14",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"typescript": "^5.3.3"
}
}