-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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
{
"name": "grug-listen-music",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:contentlayer": "contentlayer build",
"start": "next start",
"lint": "next lint && prettier --check .",
"typecheck": "tsc --noEmit",
"format": "prettier --write ."
},
"dependencies": {
"@next/bundle-analyzer": "^13.5.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@vercel/analytics": "^1.1.1",
"axios": "^1.6.7",
"cheerio": "^1.0.0-rc.12",
"clsx": "^2.0.0",
"github-slugger": "^2.0.0",
"image-size": "^1.0.2",
"next": "^14.2.5",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"server-only": "^0.0.1",
"sharp": "^0.32.6"
},
"devDependencies": {
"@icons-pack/react-simple-icons": "^9.0.1",
"@tailwindcss/typography": "^0.5.10",
"@types/mdast": "^4.0.1",
"@types/mdx": "^2.0.8",
"@types/node": "^18.18.3",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"autoprefixer": "^10.4.16",
"contentlayer": "^0.3.4",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"iconoir-react": "^6.11.0",
"mdast-flatten-image-paragraphs": "^1.0.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-string": "^4.0.0",
"next-contentlayer": "^0.3.4",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.10.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^3.0.1",
"shiki": "^0.14.4",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"unist-util-visit": "^5.0.0"
},
"prettier": {
"bracketSameLine": true
}
}