forked from google/webauthndemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.12 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
{
"name": "webauthndemo",
"version": "2.0.0",
"description": "An example JavaScript Relying Party implementation of the WebAuthn specification.",
"main": "dist/server.js",
"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.js",
"emulator": "firebase emulators:start --only firestore,auth --project try-webauthn --import=./.data --export-on-exit",
"start": "node dist/server.js"
},
"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",
"dependencies": {
"@google-cloud/connect-firestore": "^2.0.2",
"@material/mwc-button": "^0.26.1",
"@material/mwc-checkbox": "^0.26.1",
"@material/mwc-dialog": "^0.26.1",
"@material/mwc-drawer": "^0.26.1",
"@material/mwc-formfield": "^0.26.1",
"@material/mwc-icon-button": "^0.26.1",
"@material/mwc-linear-progress": "^0.26.1",
"@material/mwc-list": "^0.26.1",
"@material/mwc-select": "^0.26.1",
"@material/mwc-snackbar": "^0.26.1",
"@material/mwc-textfield": "^0.26.1",
"@material/mwc-top-app-bar-fixed": "^0.26.1",
"@simplewebauthn/server": "^5.4.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-handlebars": "^6.0.6",
"express-session": "^1.17.3",
"express-useragent": "^1.0.15",
"express-validator": "^6.14.2",
"firebase": "^9.9.0",
"firebase-admin": "^10.2.0",
"firebaseui": "^0.600.0",
"helmet": "^5.1.0",
"lit": "^2.2.7",
"uid-safe": "^2.1.5"
},
"devDependencies": {
"@material/card": "^14.0.0",
"@material/mwc-switch": "^0.26.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@simplewebauthn/typescript-types": "^5.4.0",
"@types/express": "^4.17.13",
"@types/express-handlebars": "^5.3.1",
"@types/express-session": "^1.17.5",
"@types/express-useragent": "^1.0.2",
"@types/node": "^18.0.6",
"@types/rollup-plugin-node-builtins": "^2.1.2",
"@types/rollup-plugin-node-globals": "^1.4.1",
"@types/uid-safe": "^2.1.2",
"firebase-tools": "^10.8.0",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"sass": "^1.53.0",
"typescript": "^4.7.4"
}
}