-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "antipattern",
"description": "alessia bellisario's blog",
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": "22.x"
},
"author": "Alessia Bellisario <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/alessbell/aless.co.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=true npm run build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"dependencies": {
"@headlessui/react": "1.7.19",
"@mdx-js/loader": "2.3.0",
"@next/mdx": "14.2.20",
"@tailwindcss/typography": "0.5.15",
"@vercel/og": "0.6.4",
"autoprefixer": "10.4.20",
"clsx": "2.1.1",
"fast-glob": "3.3.2",
"feed": "4.2.2",
"focus-visible": "5.2.1",
"mdx-bundler": "9.2.1",
"next": "14.2.20",
"postcss-focus-visible": "9.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-autolink-headings": "7.1.0",
"rehype-pretty-code": "0.13.1",
"rehype-slug": "6.0.0",
"remark-gfm": "3.0.1",
"sharp": "0.33.5",
"shiki": "1.1.7",
"tailwindcss": "3.4.16"
},
"devDependencies": {
"@next/bundle-analyzer": "14.2.20",
"esbuild": "0.24.0",
"eslint": "8.57.1",
"eslint-config-next": "14.2.20",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9"
}
}