-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.48 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
{
"name": "kernel-webauthn-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:vite": "vite build",
"build:bun": "curl -fsSL https://bun.sh/install | bash && export PATH=\"$HOME/.bun/bin:$PATH\" && bun install && bun run build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@anatine/zod-openapi": "^2.2.3",
"@kerneljs/core": "^0.0.1-alpha.16",
"@noble/curves": "^1.3.0",
"@scure/base": "^1.1.5",
"@simplewebauthn/browser": "^8.3.4",
"@simplewebauthn/server": "^8.3.6",
"@simplewebauthn/typescript-types": "^8.3.4",
"@zerodev/sdk": "^5.1.0",
"buffer": "^6.0.3",
"cbor-web": "^9.0.1",
"dotenv": "^16.4.1",
"hono": "^3.12.5",
"ioredis": "^5.3.2",
"jose": "^5.2.0",
"openapi-types": "^12.1.3",
"permissionless": "^0.0.28",
"pg": "^8.11.3",
"slonik": "^37.2.0",
"slonik-interceptor-field-name-transformation": "^1.6.5",
"uuid": "^9.0.1",
"viem": "^2.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bun": "^1.0.2",
"@types/node": "^20.11.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.2.2"
}
}