forked from Jurredr/openreply
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 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
{
"name": "openreply",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build --webpack",
"vercel-build": "prisma generate && next build --webpack",
"start": "next start",
"lint": "eslint",
"db:generate": "prisma generate",
"db:migrate:local": "prisma migrate dev",
"db:migrate:turso": "tsx scripts/apply-turso-migrations.ts",
"check:webhook": "tsx scripts/check-webhook.ts",
"maintenance:reels": "tsx scripts/run-maintenance.ts reels",
"maintenance:tokens": "tsx scripts/run-maintenance.ts tokens",
"worker": "tsx worker/dm-worker.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@clerk/nextjs": "^7.6.4",
"@libsql/client": "^0.17.4",
"@next/env": "16.2.6",
"@prisma/adapter-libsql": "7.8.0",
"@prisma/client": "^7.8.0",
"@vercel/analytics": "^2.0.1",
"lucide-react": "^1.30.0",
"next": "^16.2.6",
"next-auth": "^5.0.0-beta.31",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.8.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "^16.2.6",
"prisma": "^7.8.0",
"tailwindcss": "^4",
"tsx": "^4.22.1",
"typescript": "^5",
"vitest": "^4.1.5"
}
}