-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.44 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
{
"name": "shotbysardor",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.658.0",
"@aws-sdk/s3-request-presigner": "^3.658.0",
"@prisma/client": "^5.22.0",
"argon2": "^0.41.1",
"blurhash": "^2.0.5",
"clsx": "^2.1.1",
"fluent-ffmpeg": "^2.1.3",
"framer-motion": "^11.11.17",
"ioredis": "^6.0.0",
"iron-session": "^8.0.4",
"lucide-react": "^0.454.0",
"next": "^15.0.3",
"react": "^19.0.0-rc-66855b96-20241106",
"react-dom": "^19.0.0-rc-66855b96-20241106",
"recharts": "^2.13.3",
"sharp": "^0.33.5",
"tesseract.js": "^5.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0-beta.4",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.3",
"postcss": "^8.4.49",
"prisma": "^5.22.0",
"tailwindcss": "^4.0.0-beta.4",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}