-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "website",
"version": "1.0.0",
"description": "My website, made with Next.js, SSR, and MDX.",
"author": "Reboot-Codes <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build-site": "next build",
"post-build": "node ./src/lib/genRss.mjs",
"build": "yarn build-site && yarn post-build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@next/mdx": "^12.1.4",
"cheerio": "^1.0.0-rc.12",
"date-fns": "^2.28.0",
"dayjs": "^1.11.0",
"glob": "^7.2.0",
"gray-matter": "^4.0.3",
"hastscript": "^7.0.2",
"mdx-prism": "^0.3.4",
"next": "^12.1.4",
"next-mdx-remote": "2.1.0",
"next-seo": "^5.4.0",
"prettier": "^2.6.2",
"prismjs": "^1.27.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.12.0",
"reading-time": "^1.5.0",
"rehype": "^12.0.1",
"rehype-external-links": "^1.0.1",
"remark-autolink-headings": "^7.0.1",
"remark-capitalize": "^1.1.0",
"remark-code-titles": "^0.1.2",
"remark-gfm": "^3.0.1",
"remark-images": "^3.1.0",
"remark-slug": "^7.0.1",
"styled-components": "^5.3.5",
"webp-loader": "^0.6.0",
"xml": "^1.0.1"
},
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"sass": "^1.50.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}