-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.34 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
45
46
47
48
49
50
51
{
"name": "todos-express-webauthn",
"version": "0.0.0",
"private": true,
"description": "Todo app using Express and Passport for passwordless sign in with passkeys or security keys.",
"keywords": [
"example",
"express",
"passport",
"webauthn"
],
"author": "Jared Hanson <[email protected]> (https://www.jaredhanson.me/)",
"homepage": "https://github.com/passport/todos-express-webauthn",
"repository": {
"type": "git",
"url": "git://github.com/passport/todos-express-webauthn.git"
},
"bugs": {
"url": "https://github.com/passport/todos-express-webauthn/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jaredhanson"
},
"license": "Unlicense",
"scripts": {
"start": "node ./bin/www",
"debug": "node ./bin/www"
},
"dependencies": {
"base64url": "^3.0.1",
"connect-ensure-login": "^0.1.1",
"connect-pg-simple": "^9.0.0",
"cookie-parser": "~1.4.4",
"csurf": "^1.11.0",
"debug": "~2.6.9",
"dotenv": "^8.6.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.2",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-fido2-webauthn": "^0.1.0",
"pg": "^8.11.2",
"pluralize": "^8.0.0",
"uuid": "^8.3.2"
},
"main": "app.js"
}