-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 930 Bytes
/
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
{
"name": "oidc-demo-js",
"version": "1.0.0",
"description": "Demo app that acts as a OIDC RP",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node server/server.js",
"start": "node server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivshankar/verify-oidc-demo-js.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vivshankar/verify-oidc-demo-js/issues"
},
"homepage": "https://github.com/vivshankar/verify-oidc-demo-js#readme",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.17.1",
"express-handlebars": "^7.1.2",
"express-session": "^1.17.2",
"jsonwebtoken": "^9.0.2",
"openid-client": "^5.6.1",
"uuidv4": "^6.2.8",
"verify-privacy-sdk-js": "https://github.com/vivshankar/verify-privacy-sdk-js.git#0.9.5"
}
}