-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 977 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
33
34
35
36
37
{
"//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": "fidophoto",
"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": "^4.3.0",
"cookie-parser": "^1.4.4",
"crypto-js": "4.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"fs": "0.0.1-security",
"https": "^1.0.0",
"jsrsasign": "^8.0.12",
"npm": "^6.10.1",
"passport": "^0.4.0",
"passport-openidconnect": "0.0.2",
"piexifjs": "^1.0.6",
"request": "^2.88.2",
"request-promise-native": "^1.0.7",
"uuid": "^3.3.2"
},
"engines": {
"node": "8.x"
},
"license": "MIT",
"devDependencies": {
"dotenv": "^8.0.0"
}
}