-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "webauthn-codelab",
"version": "0.0.3",
"description": "Your First WebAuthn App",
"main": "server.js",
"scripts": {
"build": "webpack -p",
"start": "node server.js"
},
"dependencies": {
"express": "^4.17.1",
"hbs": "^4.1.1",
"lowdb": "^1.0.0",
"@material/mwc-button": "^0.19.1",
"@material/mwc-fab": "^0.19.1",
"@material/mwc-top-app-bar-fixed": "^0.19.1",
"@material/mwc-textfield": "^0.19.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"@babel/core": "^7.12.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"@simplewebauthn/server": "^0.10.3",
"base64url": "^3.0.1",
"css-loader": "^4.3.0",
"sass-loader": "^10.0.4",
"sass": "^1.27.2",
"extract-loader": "^5.1.0",
"file-loader": "^6.1.1",
"express-session": "^1.17.1"
},
"engines": {
"node": "10.x"
},
"repository": {
"url": "https://github.com/googlecodelabs/fido2-codelab"
},
"license": "Apache-2.0",
"keywords": [
"node",
"express",
"webauthn",
"fido2"
]
}