-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.3 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "starter-blog",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "next dev",
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"serve": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --fix --dir pages --dir components --dir lib --dir layouts --dir utils",
"prettier:check": "npx prettier --check .",
"prettier:fix": "npx prettier --write ."
},
"dependencies": {
"@next/bundle-analyzer": "14.2.22",
"@remark-embedder/core": "^3.0.2",
"@remark-embedder/transformer-oembed": "^5.0.0",
"@types/mdx": "^2.0.8",
"@vercel/analytics": "^1.1.0",
"@vercel/og": "^0.6.0",
"autoprefixer": "^10.4.16",
"clsx": "^2.0.0",
"contentlayer-temp": "^0.4.4",
"esbuild": "0.24.2",
"fs": "^0.0.1-security",
"github-slugger": "^2.0.0",
"kbar": "^0.1.0-beta.43",
"mdx-bundler": "^10.0.0",
"next": "14.2.22",
"next-contentlayer-temp": "^0.4.4",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.0",
"path": "^0.12.7",
"postcss": "^8.4.31",
"react": "18.3.1",
"react-dom": "18.3.1",
"reading-time": "1.5.0",
"rehype-autolink-headings": "^7.0.0",
"rehype-citation": "^2.0.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"rss": "^1.2.2",
"shiki": "^1.0.0",
"tailwind": "^4.0.0",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@svgr/webpack": "^8.1.0",
"@types/react": "^18.2.25",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.0.0",
"eslint-config-next": "14.2.22",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"husky": "^9.0.0",
"js-yaml": "4.1.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.6.0",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
}
}