-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
52
53
{
"name": "auth-example",
"version": "1.0.0",
"description": "Example application with authentication using OpenID Connect from Vault Vision.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "./node_modules/nodemon/bin/nodemon.js --ext 'js,ejs,json,css,html' app.js",
"dev-api": "node app-api.js --ignored",
"dev-ui": "node app-ui.js --ignored",
"example": "./node_modules/concurrently/dist/bin/concurrently.js 'npm:dev-api' 'npm:dev-api'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaultvision/node-auth-example.git"
},
"keywords": [
"vaultvision",
"vault",
"vision",
"authentication",
"authorization",
"auth",
"oidc",
"webauthn",
"password",
"passwordless",
"social",
"login"
],
"author": "cstockton",
"license": "MIT",
"bugs": {
"url": "https://github.com/vaultvision/node-auth-example/issues"
},
"homepage": "https://github.com/vaultvision/node-auth-example#readme",
"dependencies": {
"concurrently": "^7.6.0",
"cookie-parser": "^1.4.6",
"devmon": "^0.0.1",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"openid-client": "^5.3.0",
"stripe": "^11.14.0"
}
}