-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "maffin-blog",
"homepage": "https://blog.maffin.io",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "tsc --noemit && next lint",
"test": "jest --watchAll=false --coverage"
},
"dependencies": {
"@fontsource/inter": "^5.0.18",
"eslint": "8.57.0",
"eslint-config-next": "13.4.18",
"luxon": "^3.4.4",
"next": "14.2.3",
"next-sitemap": "^4.2.3",
"octokit": "^3.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-code-titles": "^1.2.0",
"rehype-external-links": "^3.0.0",
"rehype-prism-plus": "^1.6.3",
"rehype-raw": "^6.1.1",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.3",
"remark-code-title": "^0.2.5",
"remark-extract-frontmatter": "^3.2.0",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.2",
"remark-prism": "^1.3.6",
"remark-rehype": "^10.1.0",
"toml": "^3.0.0",
"typescript": "5.4.5",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@octokit/types": "^12.3.0",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "20.12.12",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"@types/remark-prism": "^1.3.7",
"autoprefixer": "^10.4.16",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-react-app": "^7.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1"
}
}