-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3700",
"build": "next build",
"start": "next start",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"fmt": "biome format .",
"fmt:fix": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --apply .",
"new:post": "plop",
"upload": "npx tsx scripts/upload-img.ts"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@t3-oss/env-nextjs": "^0.7.1",
"@types/mdx": "^2.0.9",
"contentlayer": "^0.3.4",
"jsdom": "^22.1.0",
"mdx-bundler": "^9.2.1",
"next": "14.1.4",
"next-contentlayer": "^0.3.4",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.11.0",
"react-tweet": "^3.2.0",
"sharp": "^0.32.6",
"tailwind-merge": "^1.14.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.438.0",
"@aws-sdk/s3-request-presigner": "^3.438.0",
"@biomejs/biome": "^1.6.3",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.10",
"@types/jsdom": "^21.1.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/unist": "^3.0.1",
"@types/yargs": "^17.0.29",
"autoprefixer": "^10",
"clipboardy": "^4.0.0",
"dotenv": "^16.3.1",
"image-size": "^1.0.2",
"nanoid": "^5.0.2",
"plop": "^4.0.0",
"postcss": "^8",
"prettier": "^3.0.3",
"rehype": "^13.0.1",
"rehype-autolink-headings": "^7.0.0",
"rehype-external-links": "^3.0.0",
"rehype-prism-plus": "^1.6.3",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-directive": "^3.0.0",
"remark-gfm": "^3.0.1",
"tailwindcss": "^3",
"tsx": "^3.14.0",
"typescript": "^5",
"unist-util-visit": "^5.0.0",
"yargs": "^17.7.2"
}
}