-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
{
"name": "website",
"version": "1.0.0",
"private": true,
"author": "Shubham Verma",
"license": "MIT",
"description": "",
"keywords": [],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"format": "prettier --write . --ignore-path .gitignore",
"lint": "next lint",
"analyze": "cross-env ANALYZE=true yarn build"
},
"dependencies": {
"@next/bundle-analyzer": "^13.4.4",
"@sanity/image-url": "^1.0.2",
"@vercel/og": "^0.5.6",
"copy-text-to-clipboard": "^3.1.0",
"feed": "^4.2.2",
"framer-motion": "^11.5.5",
"jotai": "^2.1.0",
"next": "^14.1.1",
"next-mdx-remote": "^4.4.1",
"next-sanity": "^4.3.3",
"plaiceholder": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.2.0",
"rehype-image-resize": "^1.0.0",
"rehype-slug": "^5.1.0",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"sharp": "^0.32.1",
"swr": "^2.1.5",
"zod": "^3.22.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.4",
"@tailwindcss/typography": "^0.5.9",
"@types/eslint": "^8.40.0",
"@types/node": "20.2.4",
"@types/prettier": "^2.7.2",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-plugin-react": "^7.32.2",
"postcss": "^8.4.47",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.4.12",
"typescript": "^5.0.4"
}
}