-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 1.64 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": "notes-site",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next",
"export": "next build && next export",
"find:unused": "next-unused",
"postbuild": "next-sitemap",
"start": "next start"
},
"dependencies": {
"@mapbox/rehype-prism": "^0.6.0",
"@samrobbins/admonition-components": "^3.0.0",
"@samrobbins/typography": "^1.3.0",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.0",
"autoprefixer": "^10.2.0",
"base-64": "^1.0.0",
"directory-tree": "^2.2.5",
"gray-matter": "^4.0.2",
"katex": "^0.16.10",
"next": "^14.2.15",
"next-mdx-remote": "^3.0.4",
"pako": "^2.0.4",
"postcss": "^8.4.31",
"postcss-import": "^14.0.0",
"postcss-preset-env": "^6.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-katex": "^4.0.0",
"remark": "^13.0.0",
"remark-autolink-headings": "^6.0.1",
"remark-emoji": "^2.1.0",
"remark-footnotes": "^3.0.0",
"remark-html": "^13.0.2",
"remark-math": "^4.0.0",
"remark-slug": "^6.0.0",
"retext": "^7.0.1",
"retext-smartypants": "^4.0.0",
"tailwindcss": "^2.1.2",
"unist-util-visit": "^2.0.3",
"utf8": "^3.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.1.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"next-sitemap": "^1.6.148",
"next-unused": "^0.0.6",
"nextjs-sitemap-generator": "^1.3.0",
"prettier": "^2.3.2",
"prettier-plugin-package": "^1.3.0"
},
"next-unused": {
"alias": {},
"include": [
"pages",
"components",
"lib"
],
"exclude": [],
"entrypoints": [
"pages",
"components",
"lib"
]
}
}