-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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": "nodejs-2fa-implementation",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && resolve-tspaths",
"start": "node dist/index.js",
"dev": "nodemon ./src/index.ts"
},
"keywords": [
"nodejs",
"2fa",
"speakeasy",
"qrcode"
],
"author": "Saquib Shaikh",
"license": "",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/node": "^22.9.0",
"@types/qrcode": "^1.5.5",
"@types/speakeasy": "^2.0.10",
"nodemon": "^3.1.7",
"resolve-tspaths": "^0.8.22",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"express-validator": "^7.2.0",
"pino": "^9.5.0",
"pino-pretty": "^12.1.0",
"qrcode": "^1.5.4",
"speakeasy": "^2.0.0"
}
}