-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 976 Bytes
/
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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.3",
"@tailwindcss/typography": "^0.5.13",
"@vercel/analytics": "^1.0.2",
"date-fns": "^2.11.1",
"gray-matter": "^4.0.3",
"next": "^14.2.3",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.2.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark": "^14.0.1",
"remark-html": "^15.0.2",
"sharp": "^0.32.4"
},
"devDependencies": {
"@types/node": "18.14.4",
"@types/react": "18.0.28",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3",
"typescript": "4.9.5"
}
}