-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.92 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
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
{
"name": "@authlete/auth-ui",
"version": "0.1.0-pre",
"private": true,
"description": "White-label authentication UI for Authlete-backed OAuth Authorization Servers",
"license": "Apache-2.0",
"scripts": {
"dev": "next dev -p ${PORT:-3001} --turbopack",
"build": "next build",
"start": "next start -p ${PORT:-3001}",
"migrate": "better-auth migrate -y",
"setup": "node scripts/setup.mjs",
"keygen": "node scripts/keygen.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@better-auth-ui/core": "^1.6.43",
"@better-auth-ui/react": "^1.6.43",
"@libsql/kysely-libsql": "^0.4.1",
"@tanstack/react-pacer": "^0.22.1",
"@tanstack/react-query": "^5.0.0",
"better-auth": "^1.6.23",
"bowser": "^2.14.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"input-otp": "^1.4.2",
"jose": "^6.2.4",
"lucide-react": "^1.17.0",
"next": "16.0.10",
"next-themes": "^0.4.0",
"react": "^19.2.8",
"react-day-picker": "^10.0.1",
"react-dom": "^19.2.8",
"resend": "^6.18.1",
"shadcn": "^4.10.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@better-auth/cli": "^1.4.21",
"@eslint/eslintrc": "^3.3.6",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^22.0.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.39.5",
"eslint-config-next": "^16.0.10",
"eslint-config-prettier": "^10.1.8",
"otpauth": "^9.5.1",
"prettier": "^3.9.6",
"tailwindcss": "^4",
"typescript": "^5.6.0"
}
}