-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 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
{
"name": "2fa-nodejs",
"version": "1.0.0",
"description": "Implementation of Two Factor Authentication using Google Authenticator app in node js app",
"main": "server.ts",
"scripts": {
"start": "ts-node --esm ./src/server.ts --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nik720/2fa-nodejs.git"
},
"keywords": [
"2fa",
"two",
"factor",
"authentication",
"google",
"authenticator",
"app"
],
"author": "Nikunj Beladiya",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nik720/2fa-nodejs.git/issues"
},
"homepage": "https://github.com/Nik720/2fa-nodejs.git#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"hi-base32": "^0.5.1",
"mongoose": "^8.0.3",
"otpauth": "^9.2.1",
"qrcode": "^1.5.3",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.18",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.5",
"@types/qrcode": "^1.5.5",
"@types/validator": "^13.11.7",
"bcrypt": "^5.1.1",
"morgan": "^1.10.0",
"typescript": "^5.3.3",
"validator": "^13.11.0"
}
}