-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.4 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "hoangndst-homepage",
"version": "0.1.0",
"private": true,
"scripts": {
"content:generate": "node --import tsx scripts/generate-content.mts",
"content:check": "yarn content:generate && node --import tsx scripts/content-check.mts",
"predev": "yarn content:generate",
"build": "yarn content:generate && cross-env INIT_CWD=$PWD next build",
"start": "next dev",
"dev": "cross-env INIT_CWD=$PWD next dev",
"serve": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "eslint src/app src/components src/lib src/layouts scripts",
"prepare": "husky",
"preview": "yarn build && next start"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.777.0",
"@giscus/react": "^3.1.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/bundle-analyzer": "^16.2.9",
"@next/mdx": "^16.2.9",
"@next/third-parties": "^16.2.9",
"@notionhq/client": "^5.14.0",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-slot": "^1.2.4",
"@react-three/drei": "^10.1.2",
"@react-three/fiber": "^9.1.2",
"@shadcn/react": "^0.2.1",
"@tailwindcss/postcss": "^4.3.3",
"@tanstack/react-table": "^8.21.3",
"@thesvg/react": "^3.2.8",
"@types/three": "^0.177.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"esbuild": "0.20.2",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.2",
"gsap": "^3.13.0",
"hast-util-from-html-isomorphic": "^2.0.0",
"image-size": "1.0.0",
"mermaid": "^11.16.0",
"next": "^16.2.9",
"postcss": "^8.5.19",
"radix-ui": "^1.6.2",
"react": "^19.2.7",
"react-activity-calendar": "^2.7.12",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.12.2",
"reading-time": "1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-citation": "^2.0.0",
"rehype-katex": "^7.0.0",
"rehype-katex-notranslate": "^1.1.4",
"rehype-preset-minify": "7.0.0",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-github-blockquote-alert": "^1.2.1",
"remark-math": "^6.0.0",
"server-only": "^0.0.1",
"shadcn": "^4.13.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"three": "^0.177.0",
"tw-animate-css": "^1.4.0",
"typed.js": "^2.1.0",
"unist-util-visit": "^5.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@types/mdx": "^2.0.12",
"@types/node": "26.2.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-config-next": "^16.2.9",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.0",
"husky": "^9.0.0",
"lint-staged": "^13.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"tsx": "^4.23.1",
"typescript": "^5.1.3"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"packageManager": "yarn@3.6.1"
}