-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "next-dev-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"preview": "next build && next start",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\""
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "20.1.0",
"@types/react": "18.2.5",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"autoprefixer": "10.4.14",
"clsx": "^1.2.1",
"contentlayer": "^0.3.2",
"date-fns": "^2.30.0",
"eslint": "8.40.0",
"eslint-config-next": "13.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-tailwindcss": "^3.11.0",
"lucide-react": "^0.214.0",
"next": "13.4.1",
"next-contentlayer": "^0.3.2",
"next-share": "^0.20.0",
"next-sitemap": "^4.0.9",
"next-themes": "^0.2.1",
"postcss": "8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"react": "18.2.0",
"react-dom": "18.2.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^1.5.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"tailwind-merge": "^1.13.2",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
}
}