-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.59 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
46
47
48
49
50
51
52
{
"name": "dev-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env WATCHPACK_POLLING=true next dev --webpack",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@notion-render/client": "^0.0.2",
"@notionhq/client": "^5.22.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"bcrypt": "^6.0.0",
"jsonwebtoken": "^9.0.3",
"lru-cache": "^11.5.1",
"lucide-react": "^1.17.0",
"next": "16.2.7",
"next-themes": "^0.4.6",
"nodemailer": "^9.0.1",
"pg": "^8.21.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^3.8.1",
"shiki": "^4.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.20",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/nodemailer": "^8.0.1",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"cross-env": "^10.1.0",
"eslint": "^9",
"eslint-config-next": "16.2.7",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"prisma": "^7.8.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}