-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"check": "prettier --check . && next lint",
"lint": "next lint",
"format": "prettier -w ."
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "15.1.6",
"@tailwindcss/typography": "^0.5.16",
"@types/mdx": "^2.0.13",
"clsx": "^2.1.1",
"embla-carousel-autoplay": "^8.5.2",
"embla-carousel-react": "^8.5.2",
"next": "15.1.6",
"next-mdx-remote": "^5.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.3.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/node": "^20.14.15",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "15.1.6",
"postcss": "^8.4.41",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.10",
"to-vfile": "^8.0.0",
"tsx": "^4.19.2",
"typescript": "^5.5.4",
"vfile-matter": "^5.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3"
}
}
}