-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.34 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.34 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
{
"name": "raff",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "echo Running prisma migrate deploy... && prisma migrate deploy && echo Migrations done. Starting app... && next start -p $PORT",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "tsx src/app/api/salla/webhook/__tests__/signature.test.ts && tsx src/lib/utils/__tests__/logger.test.ts && tsx src/lib/sync/__tests__/product-lookup.test.ts",
"test:webhook": "tsx src/app/api/salla/webhook/__tests__/signature.test.ts",
"test:logger": "tsx src/lib/utils/__tests__/logger.test.ts",
"test:performance": "tsx src/lib/sync/__tests__/product-lookup.test.ts",
"db:generate": "prisma generate",
"db:push:dev": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"db:reset": "prisma migrate reset && npm run db:seed",
"cleanup:webhooks": "node scripts/cleanup-webhook-events.mjs",
"cleanup:webhooks:dry-run": "node scripts/cleanup-webhook-events.mjs --dry-run",
"calculate:trending": "tsx scripts/calculate-trending-scores.ts",
"cron:service": "tsx scripts/cron-service.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "6.10.0",
"@swc/helpers": "^0.5.18",
"axios": "^1.13.4",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.33.0",
"ioredis": "^5.9.2",
"lucide-react": "^0.563.0",
"nanoid": "^5.1.6",
"next": "^16.1.6",
"next-auth": "^4.24.13",
"next-intl": "^4.8.2",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"resend": "^6.9.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.2.1",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"pg": "^8.18.0",
"prettier": "^3.8.1",
"prisma": "6.10.0",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "~5.8.0"
}
}