-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "nodejs-user-auth",
"version": "1.0.0",
"description": "User Authentication for Node.js",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wguedex/nodejs-user-auth.git"
},
"author": "Wilmer Guedez",
"license": "MIT",
"bugs": {
"url": "https://github.com/wguedex/nodejs-user-auth/issues"
},
"homepage": "https://github.com/wguedex/nodejs-user-auth#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"google-auth-library": "^9.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.3",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.8",
"@types/jsonwebtoken": "^9.0.4",
"@types/mongoose": "^5.11.97",
"@types/passport": "^1.0.15",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}