-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.78 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "clothify",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "prisma migrate deploy && next build",
"check": "next lint && tsc --noEmit",
"db:generate": "dotenv -e .env.local -- prisma migrate dev",
"db:migrate": "dotenv -e .env.local -- prisma migrate deploy",
"db:push": "dotenv -e .env.local -- prisma db push",
"db:studio": "dotenv -e .env.local -- prisma studio",
"dev": "next dev --turbo",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"postinstall": "prisma generate",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/google": "^2.0.14",
"@auth/prisma-adapter": "^2.10.0",
"@aws-sdk/client-s3": "^3.888.0",
"@aws-sdk/s3-request-presigner": "^3.888.0",
"@hono/zod-validator": "^0.5.0",
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "^5.22.0",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@t3-oss/env-nextjs": "^0.12.0",
"@types/uuid": "^10.0.0",
"ai": "^5.0.44",
"cheerio": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"encoding-japanese": "^2.2.0",
"framer-motion": "^12.23.12",
"hono": "^4.9.7",
"lucide-react": "^0.447.0",
"nanoid": "^5.1.5",
"next": "^15.5.7",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.4.6",
"react": "19.0.0-rc.1",
"react-dom": "19.0.0-rc.1",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.62.0",
"sharp": "^0.34.3",
"sonner": "^2.0.7",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"vaul": "^1.1.2",
"ws": "^8.18.3",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/encoding-japanese": "^2.2.1",
"@types/node": "^20.19.14",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@types/ws": "^8.18.1",
"dotenv-cli": "^7.4.4",
"eslint": "^9.35.0",
"eslint-config-next": "15.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-tailwindcss": "^3.18.2",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.17"
}
}