forked from google/webauthndemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.17 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "webauthndemo",
"version": "2.2.0",
"description": "An example JavaScript Relying Party implementation of the WebAuthn specification.",
"main": "dist/server.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf ./dist",
"build": "npm run clean && rollup -c && tsc --project ./src/tsconfig.json",
"build:prod": "npm run clean && rollup -c --environment NODE_ENV:production && tsc --project ./src/tsconfig.json",
"deploy": "npm run build && gcloud app deploy dev.yaml --project=try-webauthn",
"deploy:prod": "npm run build:prod && gcloud app deploy app.yaml --project=try-webauthn",
"dev": "NODE_ENV=localhost node dist/server.mjs",
"emulator": "firebase emulators:start --only firestore,auth --project try-webauthn --import=./.data --export-on-exit",
"start": "node dist/server.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/google/webauthndemo.git"
},
"keywords": [
"WebAuthn",
"FIDO2"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/google/webauthndemo/issues"
},
"homepage": "https://github.com/google/webauthndemo#readme",
"type": "module",
"dependencies": {
"@google-cloud/connect-firestore": "^2.0.2",
"@material/card": "^14.0.0",
"@material/mwc-button": "^0.27.0",
"@material/mwc-checkbox": "^0.27.0",
"@material/mwc-dialog": "^0.27.0",
"@material/mwc-drawer": "^0.27.0",
"@material/mwc-formfield": "^0.27.0",
"@material/mwc-icon-button": "^0.27.0",
"@material/mwc-linear-progress": "^0.27.0",
"@material/mwc-list": "^0.27.0",
"@material/mwc-select": "^0.27.0",
"@material/mwc-snackbar": "^0.27.0",
"@material/mwc-switch": "^0.27.0",
"@material/mwc-textfield": "^0.27.0",
"@material/mwc-top-app-bar-fixed": "^0.27.0",
"@simplewebauthn/server": "^6.3.0-alpha.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"express-session": "^1.17.3",
"express-useragent": "^1.0.15",
"express-validator": "^6.14.2",
"firebase": "^9.15.0",
"firebase-admin": "^11.4.1",
"firebaseui": "^6.0.2",
"helmet": "^6.0.1",
"lit": "^2.6.1",
"uid-safe": "^2.1.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@simplewebauthn/typescript-types": "^6.3.0-alpha.1",
"@types/express": "^4.17.15",
"@types/express-handlebars": "^5.3.1",
"@types/express-session": "^1.17.5",
"@types/express-useragent": "^1.0.2",
"@types/node": "^18.11.18",
"@types/rollup-plugin-node-builtins": "^2.1.2",
"@types/rollup-plugin-node-globals": "^1.4.1",
"@types/uid-safe": "^2.1.2",
"firebase-tools": "^11.20.0",
"rimraf": "^4.0.4",
"rollup": "^3.10.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-import-css": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"sass": "^1.57.1",
"typescript": "^4.9.4"
}
}