-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "blogv2",
"private": true,
"version": "1.0.0",
"type": "module",
"homepage": "https://happyzombies.github.io/",
"scripts": {
"dev": "vite",
"prebuild": "node ./scripts/compose.js",
"build": "vite build",
"eslint": "eslint . --ext .jsx",
"deploy": "npm run build && gh-pages -d dist -t",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.8",
"buffer": "^6.0.3",
"gray-matter": "^4.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-markdown": "^8.0.5",
"react-router-dom": "^6.8.1",
"react-syntax-highlighter": "^15.5.0"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.34.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^5.0.0",
"vite": "^4.1.0",
"vite-plugin-eslint": "^1.8.1"
}
}