-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.39 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
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "1chooo-com-web",
"version": "0.15.0",
"private": true,
"type": "module",
"license": "CC-BY-4.0",
"author": {
"name": "Chun-Ho (Hugo) Lin",
"email": "hugo@1chooo.com",
"url": "https://v0.1chooo.com"
},
"repository": {
"type": "git",
"url": "https://github.com/1chooo/portfolio"
},
"description": "1chooo.com is a personal portfolio and blog website built with Next.js, React, and TypeScript. It features a modern design, supports Markdown content, and includes various interactive components.",
"homepage": "https://v0.1chooo.com",
"bugs": {
"url": "https://github.com/1chooo/portfolio/issues"
},
"keywords": [
"next",
"react",
"portfolio",
"blog",
"markdown"
],
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --noEmit",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/bundle-analyzer": "16.2.10",
"@next/mdx": "16.2.10",
"@next/third-parties": "16.2.10",
"@primer/octicons-react": "^19.18.0",
"@rehype-pretty/transformers": "^0.13.2",
"@supabase/supabase-js": "^2.58.0",
"@types/mdx": "^2.0.13",
"@types/node": "24.3.0",
"@vercel/analytics": "^1.5.0",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"cobe": "^0.6.5",
"date-fns": "^4.1.0",
"gray-matter": "^4.0.3",
"lucide-react": "0.545.0",
"mdast-util-to-string": "^4.0.0",
"motion": "12.23.12",
"next": "16.2.10",
"next-mdx-remote": "^6.0.0",
"next-view-transitions": "0.3.5",
"octokit": "^5.0.3",
"react": "19.2.7",
"react-bootstrap": "^2.10.9",
"react-dom": "19.2.7",
"react-github-calendar": "^5.0.5",
"react-icons": "5.5.0",
"react-loading-skeleton": "^3.5.0",
"react-spring": "^10.0.0",
"react-syntax-highlighter": "^15.6.1",
"react-tweet": "^3.3.1",
"react-wrap-balancer": "1.1.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-github-alerts": "4.1.1",
"rehype-pretty-code": "^0.14.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"rss": "^1.2.2",
"schema-dts": "^1.1.5",
"shiki": "3.13.0",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^5.0.0",
"zod": "4.1.12"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@giscus/react": "^3.1.0",
"@shikijs/rehype": "3.13.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "5.9.3",
"unified": "^11.0.5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}