-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 842 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 842 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
{
"name": "2fa-backend",
"version": "1.0.0",
"description": "2FA Backend with Node.js, TypeScript and otplib",
"main": "dist/server.js",
"type": "module",
"scripts": {
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"build": "tsc",
"clean": "rm -rf dist"
},
"dependencies": {
"@prisma/client": "^6.19.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.19.3",
"otplib": "^12.0.1",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.25",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.10.6",
"@types/qrcode": "^1.5.6",
"prisma": "^6.19.0",
"tsx": "^4.7.0",
"typescript": "^5.9.3"
}
}