-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.51 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.51 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
{
"name": "ryck.dev",
"version": "0.2.0",
"private": true,
"description": "Personal website and blog",
"author": "Ricardo Gonzalez <rickgc@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"clean": "rm -rf .next",
"prebuild": "npm run clean",
"analyze": "ANALYZE=true npm run build"
},
"dependencies": {
"@eslint/js": "^9.39.2",
"@fec/remark-a11y-emoji": "^4.0.2",
"@headlessui/react": "^2.2.9",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.1.6",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.21",
"@toolwind/corner-shape": "0.0.8-3",
"@types/mdx": "^2.0.13",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"bright": "^1.0.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"feed": "^5.2.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.564.0",
"motion": "^12.34.0",
"next": "16.1.6",
"next-mdx-remote": "6.0.0",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"reading-time": "^1.5.0",
"redis": "^5.10.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx-frontmatter": "^5.2.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-toc": "^9.0.0",
"tailwind-merge": "^3.4.1",
"unified": "^11.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@next/eslint-plugin-next": "^16.1.6",
"@tanstack/react-query-devtools": "^5.91.3",
"@trivago/prettier-plugin-sort-imports": "6.0.2",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.0.1",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
}
}