-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.54 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.54 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
68
69
70
71
{
"name": "authly",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently --names \"APP,STUDIO\" --prefix-colors \"cyan,magenta\" \"npm run dev:app\" \"npm run dev:studio\"",
"dev:app": "next dev --turbopack -H localhost -p 5173",
"dev:studio": "drizzle-kit studio",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:push:prod": "NODE_ENV=production drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:studio:prod": "NODE_ENV=production drizzle-kit studio",
"db:setup": "npm run docker:up && npm run db:push",
"db:reset": "docker exec -i authly-postgres psql -U authly -d authly -c \"DROP SCHEMA public CASCADE; CREATE SCHEMA public;\" && npm run db:push",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:restart": "docker-compose restart",
"biome:check": "biome check .",
"biome:fix": "biome check . --write",
"format": "biome format . --write"
},
"dependencies": {
"@better-auth/cli": "1.4.5",
"@react-email/components": "^0.5.7",
"@react-email/render": "^1.4.0",
"axios": "^1.11.0",
"bcrypt": "^5.1.1",
"better-auth": "1.4.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"constructs": "^10.4.2",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.2",
"lucide-react": "^0.525.0",
"next": "15.4.10",
"pg": "^8.16.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"resend": "^6.4.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.9.2",
"@types/nodemailer": "^6.4.14",
"@types/pg": "^8.15.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"esbuild": "^0.25.12",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"jest": "^30.2.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.5",
"ts-node": "10.9.1",
"tw-animate-css": "^1.3.5",
"typescript": "^5"
}
}