-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 986 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 986 Bytes
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
{
"name": "advance-auth",
"version": "1.0.0",
"description": "Advnace auth templete with email verification, 2FA , Oauth and more",
"license": "ISC",
"author": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"google-auth-library": "^10.5.0",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.1.5",
"nodemailer": "^7.0.12",
"otplib": "^13.2.1",
"qrcode": "^1.5.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.10",
"@types/nodemailer": "^7.0.5",
"@types/qrcode": "^1.5.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}