-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.73 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
{
"name": "homepage",
"author": {
"name": "Joinemm"
},
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier -w .",
"prepare": "husky install"
},
"dependencies": {
"@artsy/fresnel": "^7.1.4",
"@giscus/react": "^3.0.0",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"date-fns": "^3.6.0",
"eslint": "^8.0.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"gray-matter": "^4.0.3",
"hast-util-has-property": "^3.0.0",
"hast-util-heading-rank": "^3.0.0",
"hast-util-to-string": "^3.0.0",
"katex": "^0.16.11",
"next": "^14.2.5",
"next-mdx-remote": "^5.0.0",
"next-seo": "^6.5.0",
"next-themes": "^0.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"react-zoom-pan-pinch": "^3.6.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.0",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-sectionize": "^2.0.0",
"rss": "^1.2.2",
"sharp": "^0.33.4",
"shiki": "^1.10.3",
"swr": "^2.2.5",
"typescript": "5.5.3",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 88
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": "prettier --write"
}
}