This repository was archived by the owner on Dec 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.46 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": "auth-server",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"seed:setup": "npx tsx scripts/seed-setup.ts",
"seed:prod": "npx tsx scripts/seed-setup.ts --prod",
"test-api": "node tests/test-oauth-flows.js && node tests/test-tenant-claims.js && node tests/test-edge-cases.js && node tests/test-tenant-edge-cases.js && node tests/test-confidential-client.js && node tests/test-default-organization.js && node tests/test-api-key.js && npx tsx tests/oauth-validation.test.ts && npx tsx tests/test-oidc-endpoints.ts",
"test-oidc": "npx tsx tests/test-oidc-endpoints.ts",
"test-api-key": "node tests/test-api-key.js",
"test-e2e": "node tests/test-complete-sso.js && node tests/test-pkce-playwright.mjs",
"test-all": "pnpm test-api && pnpm test-e2e",
"test-client-admin": "node tests/test-client-edit.js",
"test-playwright-spec": "npx playwright test tests/e2e-auth-test.spec.ts",
"test-manual-pkce": "npx tsx tests/complete-oauth-flow.ts"
},
"dependencies": {
"@neondatabase/serverless": "^0.10.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@upstash/redis": "^1.34.3",
"bcryptjs": "^3.0.3",
"better-auth": "^1.4.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.36.0",
"lucide-react": "^0.555.0",
"next": "^15.5.7",
"nodemailer": "^7.0.11",
"playwright": "^1.57.0",
"react": "^18.3.1",
"react-country-state-city": "^1.1.12",
"react-dom": "^18.3.1",
"react-phone-number-input": "^3.4.14",
"resend": "^6.5.2",
"tailwind-merge": "^3.4.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/node": "^22.0.0",
"@types/nodemailer": "^7.0.4",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.0",
"dotenv": "^16.4.0",
"drizzle-kit": "^0.28.0",
"jose": "^6.1.2",
"postcss": "^8.4.0",
"postgres": "^3.4.7",
"tailwindcss": "^3.4.0",
"tsx": "^4.21.0",
"typescript": "^5.6.0"
}
}