-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.13 KB
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
{
"name": "keystatic-passkeys",
"private": true,
"version": "1.0.0",
"description": "Reference implementation: gating the Keystatic CMS admin route with WebAuthn passkeys",
"license": "MIT",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"test": "node --disable-warning=MODULE_TYPELESS_PACKAGE_JSON --experimental-strip-types --import ./tests/alias-loader.mjs --test tests/*.test.ts",
"check": "tsc --noEmit && npm test"
},
"dependencies": {
"@keystatic/core": "^0.6.5",
"@keystatic/next": "^5.0.2",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.2",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"next": "^16.3.1",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"postcss": "^8.5.26",
"postcss-load-config": "^6.0.1",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2"
}
}