-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "x-world-mini-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"seed": "tsx scripts/seed-tweets.ts",
"seed:full": "tsx prisma/seed.ts",
"admin": "tsx scripts/gamification-admin.ts",
"vercel-build": "prisma generate && prisma migrate deploy && next build"
},
"dependencies": {
"@prisma/client": "^6.19.0",
"@prisma/extension-accelerate": "^3.0.1",
"@radix-ui/react-slot": "^1.2.4",
"@types/node": "^20.0.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vercel/blob": "^2.0.0",
"@worldcoin/idkit": "^2.4.2",
"@worldcoin/idkit-core": "^2.1.0",
"@worldcoin/idkit-standalone": "^2.2.5",
"@worldcoin/minikit-js": "^1.9.8",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"eruda": "^3.4.3",
"lucide-react": "^0.447.0",
"next": "14.2.15",
"next-themes": "^0.4.6",
"postcss": "^8.4.49",
"prisma": "^6.19.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.34.5",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"zustand": "^4.5.5"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-next": "14.2.15",
"tsx": "^4.20.6"
}
}