generated from sergiodxa/remix-auth-strategy-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 2.26 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
{
"name": "remix-auth-webauthn",
"version": "0.3.3",
"exports": {
".": {
"types": "./build/server.d.ts",
"require": "./build/server.js",
"import": "./build/server.js"
},
"./browser": {
"types": "./build/browser.d.ts",
"require": "./build/browser.js",
"import": "./build/browser.js"
},
"./server": {
"types": "./build/server.d.ts",
"require": "./build/server.js",
"import": "./build/server.js"
}
},
"author": "Alex Anderson",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/alexanderson1993/remix-auth-webauthn.git"
},
"bugs": "https://github.com/alexanderson1993/remix-auth-webauthn/issues",
"scripts": {
"build": "tsc --project tsconfig.json && npx esbuild src/* --outdir=build --platform=node --format=esm",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint --ext .ts,.tsx src/"
},
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy",
"webauthn",
"passkey",
"fido"
],
"license": "MIT",
"files": [
"build",
"package.json",
"README.md"
],
"peerDependencies": {
"@remix-run/server-runtime": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@remix-run/node": "^1.14.3",
"@remix-run/react": "^1.14.3",
"@remix-run/server-runtime": "^1.14.3",
"@simplewebauthn/types": "^10.0.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-jest": "^26.6.3",
"esbuild": "^0.17.14",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^32.0.1",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.3.2",
"react": "^18.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@simplewebauthn/browser": "^10.0.0",
"@simplewebauthn/server": "^10.0.0",
"remix-auth": "^3.6.0",
"tiny-webcrypto": "^1.0.1"
}
}