forked from akdombrowski/pingone-express_js-sample-app-guide
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.16 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": "pingone-express_js-sample-app-guide",
"version": "1.0.0",
"private": true,
"author": {
"name": "Ping Identity"
},
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/dbrowski/pingone-express_js-sample-app-guide"
},
"homepage": "https://github.com/dbrowski/pingone-express_js-sample-app-guide#readme",
"readme": "https://github.com/dbrowski/pingone-express_js-sample-app-guide#readme",
"description": "A walkthrough guide on how to add authentication using PingOne to a traditional web app (includes server).",
"keywords": [
"PingOne",
"NodeJS",
"Express",
"Authentication",
"OAuth 2.0",
"OIDC",
"Authorization Code",
"Authz Code Grant Type",
"Web App",
"Server",
"Auth",
"Authn",
"Authz",
"Authorization",
"OpenID",
"OpenIDConnect",
"Identity",
"IAM",
"Login",
"Cybersecurity",
"Security"
],
"engines": {
"node": ">18.7.1"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2"
},
"scripts": {
"step0": "node ./step0",
"step1": "node ./step1",
"step2": "node ./step2",
"step3": "node ./step3"
}
}