-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 KB
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
{
"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.14.0",
"@emotion/styled": "^11.14.0",
"@giscus/react": "^3.1.0",
"@mui/icons-material": "^6.3.1",
"@mui/material": "^6.3.1",
"@types/node": "22.10.5",
"@types/react": "19.0.4",
"@types/react-dom": "19.0.2",
"babel-plugin-react-compiler": "^19.0.0-beta-63e3235-20250105",
"dayjs": "^1.11.13",
"eslint": "9.18.0",
"eslint-config-next": "15.1.4",
"next": "^15.1.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-markdown": "^9.0.3",
"react-syntax-highlighter": "^15.6.1",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"remark-parse-frontmatter": "^1.0.3",
"remark-stringify": "^11.0.0",
"typescript": "5.7.3",
"unified": "^11.0.5",
"vfile": "^6.0.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.1.4",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/react-syntax-highlighter": "^15.5.13",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"next-sitemap": "^4.2.3",
"prettier": "^3.4.2",
"sass": "^1.83.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,md}": "prettier --write"
}
}