-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"name": "portfolio-website",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "node scripts/optimize-images.js && vite build && node scripts/update-404.js",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"create-project": "node scripts/create-project.js",
"optimize-images": "node scripts/optimize-images.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist --cname mrleemurray.com"
},
"dependencies": {
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-container": "^4.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-toc-done-right": "^4.2.0",
"prismjs": "^1.30.0",
"vue": "^3.5.20",
"vue-router": "^4.5.1",
"vue3-lazyload": "^0.3.8"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-anchor": "^4.0.4",
"@types/markdown-it-emoji": "^3.0.1",
"@types/prismjs": "^1.26.5",
"@types/vue": "^2.0.0",
"@vitejs/plugin-vue": "^6.0.1",
"gh-pages": "^6.3.0",
"sass": "^1.91.0",
"sharp": "^0.34.3",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vue-tsc": "^3.0.6"
}
}