-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.49 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "melanies.dev",
"version": "0.0.0",
"private": true,
"description": "My personal site/blog built with Next.js, Tailwind, and Contentlayer.",
"repository": "github:melanieseltzer/melanies.dev",
"author": "Melanie Seltzer <[email protected]>",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --dir .",
"lint:fix": "yarn lint --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "tsc --noEmit",
"generate-rss": "tsx ./scripts/generate-rss.ts",
"postinstall": "husky install && contentlayer build",
"postbuild": "yarn generate-rss"
},
"lint-staged": {
"*.+(js|ts|tsx)": [
"eslint --cache --fix"
],
"*.+(js|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"resolutions": {
"//eslint-plugin-react-hooks": "Fix: https://github.com/vercel/next.js/issues/52365",
"eslint-plugin-react-hooks": "4.6.0"
},
"dependencies": {
"@code-hike/mdx": "^0.8.1",
"@headlessui/react": "^1.7.12",
"@vercel/analytics": "^0.1.11",
"clsx": "^1.2.1",
"contentlayer": "^0.3.4",
"feed": "^4.2.2",
"github-slugger": "^2.0.0",
"next": "^13.4.13",
"next-contentlayer": "^0.3.4",
"next-seo": "^6.1.0",
"next-themes": "^0.2.1",
"nextjs-toploader": "^1.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-wrap-balancer": "^0.4.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-preset-minify": "^6.0.0",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"sharp": "^0.31.3",
"tailwind-merge": "^1.10.0"
},
"devDependencies": {
"@mels/eslint-config-base": "^1.0.1",
"@mels/eslint-config-jest": "^1.0.0",
"@mels/eslint-config-react": "^1.0.0",
"@mels/eslint-config-typescript": "^1.0.1",
"@mels/prettier-config": "^1.0.0",
"@next/bundle-analyzer": "^13.2.1",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "18.14.1",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-next": "^13.4.13",
"husky": "^8.0.0",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"tailwindcss": "^3.2.7",
"tsx": "^3.12.6",
"typescript": "4.9.5"
}
}