-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.99 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
{
"name": "jeffreybarron-com",
"version": "0.2.1.3",
"homepage" : "https://jeffreybarron.com",
"description": "A statically generated blog example using Next.js and Markdown",
"author": "Jeffrey Barron",
"license": "MIT",
"repository": "https://github.com/jeffreybarron/nextjs-blog",
"bugs": {
"url": "https://github.com/jeffreybarron/nextjs-blog/issues"
},
"private": true,
"engines": {
"npm": ">=8.19.3 <=9.5",
"node": ">=v18.13.0 <=v18.16"
},
"scripts": {
"dev": "NODE_ENV=development next dev",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production next start",
"lint": "next lint",
"debug": "NODE_OPTIONS='--inspect' NODE_ENV=development next dev"
},
"dependencies": {
"@mdx-js/loader": "^2.3.0",
"@mdx-js/mdx": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/eslint-plugin-next": "^13.2.4",
"@next/mdx": "^13.2.4",
"@sendgrid/mail": "^7.7.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"gray-matter": "^4.0.3",
"lru-cache": "^9.1.1",
"next": "13.2.4",
"next-mdx-remote": "^4.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"reading-time": "^1.5.0",
"rehype-accessible-emojis": "^0.3.2",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.9.4",
"rehype-prism": "^2.2.0",
"rehype-slug": "^5.1.0",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx": "^2.3.0",
"remark-rehype": "^10.1.0",
"sharp": "^0.32.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-mdx": "^2.0.5",
"globby": "^11.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.6",
"prettier-plugin-tailwindcss": "^0.2.5",
"tailwindcss": "^3.2.7"
},
"prettier": {
"plugins": [
"preset-lint-consistent",
"preset-lint-recommended",
"preset-lint-markdown-style-guide",
"preset-prettier"
]
}
}