-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 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
{
"name": "eloop",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "npx tsx scripts/check-and-init-db.js && TURBOPACK=1 next dev --turbopack",
"build": "npx tsx scripts/check-and-init-db.js && next build",
"start": "npx tsx scripts/check-and-init-db.js && next start",
"lint": "eslint",
"init-db": "npx tsx scripts/init-db.js"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@heroicons/react": "^2.2.0",
"@libsql/client": "^0.15.15",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"@yudiel/react-qr-scanner": "^2.3.1",
"@zxing/browser": "^0.1.5",
"dotenv": "^17.2.2",
"jose": "^6.1.0",
"lucide-react": "^0.544.0",
"next": "^15.5.6",
"next-auth": "^5.0.0-beta.29",
"posthog-js": "^1.275.1",
"posthog-node": "^5.9.5",
"qrcode": "^1.5.4",
"qrcode.react": "^4.2.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.63.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/qrcode": "^1.5.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"ignore-loader": "^0.1.2",
"tailwindcss": "^4",
"typescript": "5.9.3"
}
}