-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
106 lines (106 loc) · 3.62 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "matteogiardino.com",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"contentlayer dev\" \"next dev\"",
"build": "next build",
"clean": "rm -rf .next .contentlayer tsconfig.tsbuildinfo node_modules",
"clean:full": "pnpm clean && rm -rf node_modules",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"check-updates": "pnpm dlx npm-check-updates --interactive --format group"
},
"dependencies": {
"@calcom/embed-react": "^1.5.1",
"@icons-pack/react-simple-icons": "^9.3.0",
"@mdi/react": "^1.6.1",
"@paypal/paypal-js": "^8.1.2",
"@paypal/react-paypal-js": "^8.7.0",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@shikijs/rehype": "^1.22.0",
"@shikijs/transformers": "^1.22.0",
"@t3-oss/env-nextjs": "^0.9.2",
"@tabler/icons-react": "^2.47.0",
"@tailwindcss/typography": "^0.5.10",
"@vercel/speed-insights": "^1.0.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"colord": "^2.9.3",
"contentlayer": "^0.3.4",
"date-fns": "^3.4.0",
"embla-carousel-autoplay": "^8.3.0",
"embla-carousel-react": "^8.3.0",
"framer-motion": "^11.11.8",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"gsap": "^3.12.5",
"hast-util-select": "^6.0.3",
"hastscript": "^9.0.0",
"lucide-react": "^0.344.0",
"next": "14.2.15",
"next-contentlayer": "^0.3.4",
"next-nprogress-bar": "^2.3.14",
"next-themes": "^0.2.1",
"react": "^18",
"react-dom": "^18",
"react-medium-image-zoom": "^5.2.10",
"react-qr-code": "^2.0.15",
"react-share": "^5.1.0",
"rehype-parse": "^9.0.1",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^3.0.1",
"rss": "^1.2.2",
"schema-dts": "^1.1.2",
"sharp": "^0.33.3",
"shiki": "^1.22.0",
"slugify": "^1.6.6",
"sonner": "^1.5.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/hast": "^3.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/rss": "^0.0.32",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^3.1.0",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
}
}