-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 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
{
"name": "www",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"next-lint": "next lint",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"lint": "pnpm run typecheck && pnpm run next-lint && pnpm run format:check",
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@khinshankhan/emoji-helper-core": "^3.0.1",
"@khinshankhan/emoji-helper-pack-github": "^3.0.4",
"@khinshankhan/emoji-helper-remark": "^3.1.1",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-portal": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@types/hast": "^3.0.4",
"@types/refractor": "^3.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.2.12",
"geist": "^1.3.0",
"github-slugger": "^2.0.0",
"globby": "^14.0.2",
"gray-matter": "^4.0.3",
"hast-util-heading-rank": "^3.0.0",
"hast-util-to-html": "^9.0.3",
"hast-util-to-string": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"next": "^14.2.4",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.3.0",
"parse-numeric-range": "^1.3.0",
"react": "^18.3.1",
"react-children-utilities": "^2.10.0",
"react-dom": "^18.3.1",
"react-medium-image-zoom": "^5.2.10",
"react-responsive": "^10.0.0",
"refractor": "^4.8.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-mdx-code-props": "^3.0.1",
"rehype-parse": "^9.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-unwrap-images": "^4.0.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vaul": "^0.9.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/parser": "^7.15.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-tailwindcss": "^3.17.4",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"puppeteer": "^23.4.1",
"tailwindcss": "3.4.3"
}
}