-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 KB
/
package.json
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
{
"name": "twitter-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "pnpm exec prisma generate && next build",
"start": "next start",
"lint": "next lint",
"seed": "pnpm exec prisma db seed"
},
"dependencies": {
"@emotion/css": "^11.13.0",
"@headlessui/react": "^2.1.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.17.0",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/supabase-js": "^2.44.4",
"@tanstack/react-query": "5.51.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"moment": "^2.30.1",
"next": "14.2.5",
"next-auth": "^4.24.7",
"postcss": "8.4.39",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"react-intersection-observer": "^9.13.0",
"sharp": "^0.33.4",
"tailwindcss": "3.4.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/is-hotkey": "^0.1.10",
"@types/is-url": "^1.2.32",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^5.17.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}