-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "2fa-generator",
"version": "1.0.0",
"description": "2FA Mobile testing utility",
"private": true,
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"type": "module",
"scripts": {
"dev": "nodemon ./index.js",
"lint": "eslint",
"start": "node ./index.js"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterdee/2fa-generator"
},
"homepage": "https://github.com/peterdee/2fa-generator",
"dependencies": {
"@otplib/core": "^12.0.1",
"@otplib/plugin-crypto": "^12.0.1",
"@otplib/plugin-thirty-two": "^12.0.1",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-pino-logger": "^7.0.0",
"express-rate-limit": "^6.4.0",
"helmet": "^5.1.0",
"joi": "^17.6.0",
"pino-pretty": "^8.0.0"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.16"
}
}