-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.01 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
{
"name": "use-feedback",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "prisma generate",
"migrate:dev": "dotenv -e .env.local -- pnpm dlx prisma migrate dev",
"prisma:generate": "dotenv -e .env.local -- pnpm dlx prisma generate",
"prisma:studio": "dotenv -e .env.local -- pnpm dlx prisma studio",
"db:push": "dotenv -e .env.local -- pnpm dlx prisma db push",
"db:seed": "dotenv -e .env.local -- pnpm dlx prisma db seed",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky"
},
"dependencies": {
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "7.7.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@uploadcare/react-uploader": "^1.14.0",
"@vercel/analytics": "^2.0.1",
"axios": "^1.15.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"jotai": "^2.19.1",
"lucide-react": "^1.8.0",
"motion": "^12.38.0",
"next": "16.2.4",
"next-auth": "5.0.0-beta.30",
"next-themes": "^0.4.6",
"pg": "^8.20.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-spinners": "^0.17.0",
"react-syntax-highlighter": "^16.1.1",
"react-tweet": "^3.3.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"dotenv-cli": "^11.0.0",
"eslint": "^10.2.1",
"eslint-config-next": "16.2.4",
"husky": "^9.1.7",
"postcss": "^8.5.10",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.7.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3"
}
}