-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "miniblognextjs2",
"version": "0.1.0",
"private": true,
"author": "Pete Eamsuwan",
"sideEffects": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"serve": "npx serve@latest out",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@giscus/react": "^2.3.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.4",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"dayjs": "^1.11.9",
"eslint": "8.46.0",
"eslint-config-next": "13.4.13",
"next": "13.4.13",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"remark-frontmatter": "^4.0.1",
"remark-parse": "^10.0.2",
"remark-parse-frontmatter": "^1.0.3",
"remark-stringify": "^10.0.3",
"typescript": "5.1.6",
"unified": "^10.1.2",
"vfile": "^6.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.15",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/react-syntax-highlighter": "^15.5.7",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"next-sitemap": "^4.2.2",
"prettier": "^3.0.1",
"sass": "^1.65.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,md}": "prettier --write"
}
}