-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.79 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "blklihgt.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next build && next export",
"start": "next start",
"lint": "next lint",
"deploy": "touch out/.nojekyll && gh-pages -d out --dotfiles"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@next/font": "13.1.5",
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-dropdown-menu": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.3",
"@tailwindcss/typography": "^0.5.8",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"autoprefixer": "^10.4.13",
"axios": "^1.2.4",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"cmdk": "^0.1.22",
"contentlayer": "^0.3.0",
"date-fns": "^2.29.3",
"esbuild": "^0.16.13",
"eslint": "8.32.0",
"eslint-config-next": "13.1.5",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-tailwindcss": "^3.8.0",
"github-slugger": "^1.3.0",
"glob": "^8.0.3",
"gray-matter": "^4.0.2",
"image-size": "1.0.0",
"lucide-react": "^0.105.0",
"mdx-bundler": "^9.2.1",
"next": "13.1.5",
"next-contentlayer": "^0.3.0",
"next-mdx-remote": "^4.2.0",
"next-themes": "^0.2.1",
"postcss": "^8.4.20",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-tooltip": "^5.5.2",
"reading-time": "^1.5.0",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-citation": "^0.4.0",
"rehype-code-titles": "^1.1.0",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.2",
"rehype-preset-minify": "6.0.0",
"rehype-pretty-code": "^0.9.4",
"rehype-prism-plus": "^1.1.3",
"rehype-slug": "^5.1.0",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-prism": "^1.3.6",
"rss": "^1.2.2",
"sass": "^1.57.1",
"sharp": "^0.28.3",
"shiki": "^0.14.1",
"tailwind-merge": "^1.8.1",
"tailwindcss": "^3.2.4",
"tailwindcss-animate": "^1.0.5",
"typescript": "4.9.4",
"unist-util-visit": "^4.0.0"
},
"devDependencies": {
"@svgr/webpack": "^6.1.2",
"gh-pages": "^4.0.0",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.0"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|scss|md|mdx)": [
"prettier --write"
]
}
}