-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 857 Bytes
/
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
{
"name": "blogapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.11",
"@prisma/client": "^5.7.1",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"next": "14.0.4",
"next-auth": "^4.24.5",
"next-connect": "^1.0.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.12.0",
"sharp": "^0.33.4",
"swr": "^2.2.4"
},
"devDependencies": {
"@types/multer": "^1.4.11",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"postcss": "^8",
"prisma": "^5.7.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}