-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 2.09 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
71
{
"name": "blog-next",
"version": "0.1.0",
"type": "module",
"private": true,
"engines": {
"node": "18"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config sitemap-config.js && node rss-gen.js",
"start": "next start",
"lint": "eslint . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "eslint . --ext ts --ext tsx --ext js --ext jsx --fix"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.0",
"@mui/styles": "^5.12.3",
"cookies-next": "^2.1.1",
"disqus-react": "^1.1.5",
"gray-matter": "^4.0.3",
"hast-util-has-property": "^2.0.1",
"hast-util-heading-rank": "^2.1.1",
"hast-util-to-string": "^2.0.0",
"mdx-prism": "^0.3.4",
"next": "^13.4.2",
"next-mdx-remote": "^4.4.1",
"next-seo": "^6.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-gtm-module": "^2.0.11",
"react-swipeable-views": "^0.14.0",
"react-swipeable-views-utils": "^0.14.0",
"react-syntax-highlighter": "^15.5.0",
"react-text-truncate": "^0.19.0",
"reading-time": "^1.5.0",
"rehype-highlight": "^6.0.0",
"rehype-slug": "^5.1.0",
"remark": "^14.0.3",
"remark-directive": "^2.0.1",
"rss": "^1.2.2",
"sharethis-reactjs": "^1.6.0",
"unist-util-visit": "^4.1.2",
"yarn": "^1.22.19"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.4.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"next-sitemap": "^4.0.9",
"rehype-parse": "^8.0.4",
"rehype-remark": "^9.1.2",
"rehype-sanitize": "^5.0.1",
"remark-code-blocks": "^2.0.1",
"remark-stringify": "^10.0.3",
"to-vfile": "^7.2.4",
"unified": "^10.1.2",
"vfile-reporter": "^7.0.5"
}
}