-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
56
57
58
59
60
{
"name": "nextjs-blog-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "node src/lib/seed.js",
"prisma:seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@auth/mongodb-adapter": "^3.7.4",
"@auth/prisma-adapter": "^2.7.4",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@prisma/client": "^6.1.0",
"@tailwindcss/line-clamp": "^0.4.4",
"@tiptap/extension-code-block-lowlight": "^2.10.4",
"@tiptap/extension-image": "^2.10.4",
"@tiptap/extension-link": "^2.10.4",
"@tiptap/pm": "^2.10.4",
"@tiptap/react": "^2.10.4",
"@tiptap/starter-kit": "^2.10.4",
"@uiw/react-md-editor": "^4.0.5",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.7",
"geist": "^1.3.1",
"lowlight": "^3.3.0",
"lucide-react": "^0.469.0",
"mongoose": "^8.9.2",
"next": "15.1.2",
"next-auth": "^4.24.11",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.17.10",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^9",
"eslint-config-next": "15.1.2",
"postcss": "^8.4.49",
"prisma": "^6.1.0",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}