-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"name": "netflix-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.19.0",
"axios": "^1.13.2",
"bcrypt": "^6.0.0",
"dotenv": "^17.2.3",
"lodash": "^4.17.21",
"next": "16.0.1",
"next-auth": "^4.24.13",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-icons": "^5.5.0",
"swr": "^2.3.6",
"zustand": "^5.0.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@types/bcrypt": "^6.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"postcss": "^8.5.6",
"prisma": "^6.19.0",
"tailwindcss": "^4.1.17",
"typescript": "^5"
}
}