-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 848 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
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "cifido2rp",
"version": "0.0.1",
"description": "WebAuthn RP that uses IBM Cloud Identity FIDO2 server",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start_local": "node -r dotenv/config server.js"
},
"dependencies": {
"cbor": "^9.0.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fs": "0.0.1-security",
"https": "^1.0.0",
"jsrsasign": "^10.8.6",
"openid-client": "^5.4.3",
"passport": "^0.6.0",
"token-introspection": "^3.2.0"
},
"engines": {
"node": "^18.6.1"
},
"license": "MIT",
"devDependencies": {
"dotenv": "^8.0.0"
}
}