-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.75 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.75 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
{
"name": "@mateonunez/website",
"version": "1.8.2",
"scripts": {
"dev": "next dev --webpack",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "biome lint && biome format && biome check",
"lint:fix": "biome lint --write --unsafe && biome format --write && biome check --write",
"generate:webmanifest": "tsx scripts/generate-webmanifest.ts",
"sync:skills": "tsx scripts/sync-skills.ts",
"prebuild": "npm run generate:webmanifest",
"prepare": "husky && tsx scripts/sync-skills.ts"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@octokit/graphql": "^9.0.3",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@vercel/analytics": "^2.0.1",
"babel-plugin-react-compiler": "1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.38.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.577.0",
"next": "16.2.0",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-compiler-runtime": "^1.0.0",
"react-dom": "19.2.4",
"reading-time": "^1.5.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"swr": "^2.4.1",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@next/bundle-analyzer": "16.2.0",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.19",
"@types/js-cookie": "^3.0.6",
"@types/mdx": "^2.0.13",
"@types/node": "^25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"husky": "^9.1.7",
"postcss": "^8.5.8",
"schema-dts": "^2.0.0",
"tailwindcss": "^4.2.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"author": "mateonunez",
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild",
"sharp"
],
"ignoredBuiltDependencies": [
"@tailwindcss/oxide"
],
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}
}