forked from matthewwong525/linked-blog-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.33 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
{
"private": true,
"scripts": {
"copyimages": "node ./lib/modules/copy-images.mjs",
"predev": "npm run copyimages",
"dev": "next",
"prebuild": "npm run copyimages",
"build": "next build",
"start": "next start",
"typecheck": "tsc"
},
"dependencies": {
"@giscus/react": "^2.2.4",
"@supabase/supabase-js": "^2.10.0",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"dotenv": "^16.0.3",
"fast-fuzzy": "^1.12.0",
"fs-extra": "^11.1.0",
"gray-matter": "^4.0.3",
"hast-util-from-html": "^1.0.0",
"hast-util-select": "^5.0.2",
"iframe-resizer-react": "^1.1.0",
"next": "latest",
"next-seo": "^5.15.0",
"posthog-js": "^1.39.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.5",
"rehype-rewrite": "^3.0.6",
"rehype-sanitize": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.1",
"remark-rehype": "^10.1.0",
"remove-markdown": "^0.5.0",
"swr": "^1.3.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-transition-group": "^4.4.5",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"tailwindcss": "^3.2.4"
}
}