-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "mynext",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.17",
"npm": ">=9.6.7"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.json ",
"generate-sitemap": "node sitemap-generator.js"
},
"dependencies": {
"@mui/icons-material": "^5.14.8",
"@mui/joy": "^5.0.0-beta.4",
"@mui/material": "^5.14.8",
"@sergeymyssak/nextjs-sitemap": "^2.0.3",
"clsx": "^1.1.1",
"date-fns": "^2.22.1",
"eslint-config-next": "^13.5.6",
"gray-matter": "^4.0.3",
"highlight.js": "^11.2.0",
"lodash": "^4.17.21",
"markdown-it": "^12.2.0",
"mermaid": "^8.11.4",
"next": "^13.5.6",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-lazy-load-image-component": "^1.6.0",
"react-lazyload": "^3.2.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.3",
"@svgr/webpack": "^5.5.0",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"url-loader": "^4.1.1"
}
}