-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.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
43
44
45
{
"name": "theScribbly",
"version": "0.1.0",
"private": true,
"description": "A content-driven app using Prisma, Next.js, and NextAuth",
"author": "Hasnain",
"keywords": [
"nextjs",
"prisma",
"next-auth",
"content",
"blog"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed:category": "node prisma/seed/category.js",
"seed:post": "node prisma/seed/post.js",
"seed:user": "node prisma/seed/user.js",
"seed:comment": "node prisma/seed/comment.js",
"postinstall": "prisma generate"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.1",
"@faker-js/faker": "^9.8.0",
"@prisma/client": "6.9.0",
"cloudinary": "^2.6.1",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"firebase": "^10.3.0",
"lucide-react": "^0.513.0",
"next": "13.4.19",
"next-auth": "^4.23.1",
"next-cloudinary": "^6.16.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-quill": "^2.0.0",
"swr": "^2.2.2"
},
"devDependencies": {
"prisma": "^6.9.0"
}
}