-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 828 Bytes
/
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
{
"name": "your-static-blog",
"private": true,
"version": "0.0.0",
"type": "module",
"author": {
"name": "",
"email": ""
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"optimize": "node commands/optimize-images.js",
"time": "node commands/get-time.js"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"lodash.throttle": "^4.1.1",
"pinia": "^2.1.4",
"vue": "^3.3.4",
"vue-gtag-next": "^1.14.0",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"imagemin-jpeg-recompress": "^7.1.0",
"imagemin-keep-folder": "^5.3.2",
"imagemin-optipng": "^8.0.0",
"imagemin-webp": "^8.0.0",
"sass": "^1.65.1",
"vite": "^4.4.5",
"vite-plugin-markdownify": "^0.2.0"
}
}