mirror of
https://github.com/chenasraf/express-otp.git
synced 2026-05-18 01:49:07 +00:00
35 lines
985 B
JSON
35 lines
985 B
JSON
{
|
|
"name": "express-otp",
|
|
"version": "0.1.0",
|
|
"description": "Easy auth with your admin endpoints using OTP",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/chenasraf/express-otp",
|
|
"author": "Chen Asraf <contact@casraf.dev>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"start": "concurrently \"tsc -w\" \"nodemon build/example/server.js\"",
|
|
"build": "tsc",
|
|
"docs:build": "typedoc --out docs src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"hi-base32": "^0.5.1",
|
|
"qrcode": "^1.5.1",
|
|
"totp-generator": "^0.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.14",
|
|
"@types/node": "^18.11.9",
|
|
"@types/qrcode": "^1.5.0",
|
|
"@types/totp-generator": "^0.0.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
|
"@typescript-eslint/parser": "^5.44.0",
|
|
"concurrently": "^7.6.0",
|
|
"dotenv": "^16.0.3",
|
|
"eslint": "^8.28.0",
|
|
"express": "^4.18.2",
|
|
"nodemon": "^2.0.20",
|
|
"typedoc": "^0.23.21",
|
|
"typescript": "^4.9.3"
|
|
}
|
|
}
|