-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.58 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
{
"name": "blog",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run gen-map && vite",
"build": "vue-tsc --noEmit && vite-ssg build",
"preview": "vite preview",
"gen-map": "tsc src/build.ts --outDir ./src/build --module esnext --moduleResolution node --target esnext --allowSyntheticDefaultImports && node --es-module-specifier-resolution=node ./src/build/build.js",
"gen-link": "tsc src/jobs/generateLinkCardData.ts --outDir ./src/build --module esnext --moduleResolution node --target esnext --allowSyntheticDefaultImports && node --es-module-specifier-resolution=node ./src/build/jobs/generateLinkCardData.js"
},
"dependencies": {
"@wooorm/starry-night": "^1.3.1",
"axios": "^0.27.2",
"dayjs": "^1.11.3",
"lowlight": "^2.7.0",
"mdast-util-from-markdown": "^1.2.0",
"mdast-util-gfm": "^2.0.1",
"micromark-extension-gfm": "^2.0.1",
"puppeteer": "^19.2.2",
"rehype-highlight": "^5.0.2",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-stringify": "^10.0.2",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.1",
"vue": "^3.2.37",
"vue-router": "^4.1.2"
},
"devDependencies": {
"@types/node": "^16.11.44",
"@vitejs/plugin-vue": "^3.0.0",
"@vueuse/head": "^0.7.6",
"prettier": "^2.7.1",
"remark-extract-frontmatter": "^3.2.0",
"remark-frontmatter": "^4.0.1",
"sass": "^1.53.0",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vite-ssg": "^0.20.2",
"vue-tsc": "^0.38.4",
"yaml": "^2.1.1"
}
}