-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "responsive-blog",
"private": true,
"version": "0.1.0",
"type": "module",
"homepage": "https://shivam-tripathi.github.io",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy:personal": "npm run build && gh-pages -d dist",
"deploy:project": "npm run build && gh-pages -d dist -b gh-pages",
"deploy": "npm run deploy:personal"
},
"dependencies": {
"lucide-react": "^0.344.0",
"mermaid": "^10.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.5",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.20.0",
"react-tooltip": "^5.26.0",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"remark-directive": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"gh-pages": "^6.3.0",
"sass": "^1.93.3",
"terser": "^5.44.1",
"vite": "^5.0.8"
}
}