-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.98 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.98 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
{
"name": "silencio-checkin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"worker:install": "cd worker && npm install",
"worker:dev": "cd worker && npm start",
"worker:health": "curl http://localhost:3001/health",
"worker:docker:build": "docker build -f Dockerfile.worker -t silencio-worker .",
"worker:docker:run": "docker run -d --name ably-worker --restart unless-stopped -p 3001:3001 --env-file .env silencio-worker"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.5",
"@yudiel/react-qr-scanner": "^2.3.1",
"ably": "^2.14.0",
"better-auth": "^1.3.28",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.44.6",
"input-otp": "^1.4.2",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"next": "^16.0.7",
"next-themes": "^0.4.6",
"nextjs-toploader": "^3.9.17",
"qrcode.react": "^4.2.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"use-sound": "^5.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.18.1",
"drizzle-kit": "^0.31.5",
"eslint": "^9",
"eslint-config-next": "15.5.6",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}