-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "mk-next-blog-kit",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc",
"healthcheck": "npm run lint && npm run typecheck",
"postbuild": "npm run sitemap && npm run rss",
"sitemap": "next-sitemap",
"rss": "npx tsx './lib/blog/rss-feed.ts'"
},
"author": {
"email": "[email protected]",
"name": "Giancarlo Buomprisco"
},
"dependencies": {
"@mdx-js/mdx": "^2.1.3",
"date-fns": "^2.29.2",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"next": "12.2.5",
"next-sitemap": "^3.1.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.8",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"typescript": "4.8.2"
}
}