-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
47
48
{
"name": "vuejs-blog-generator",
"version": "3.2.0",
"private": true,
"type": "module",
"description": "Blog generator templater",
"scripts": {
"dev": "vite",
"serve": "npm run dev",
"build": "vue-tsc --noEmit && vite-ssg build && npm run clean_output",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"clean_output": "find dist/ -type f -name '*.js' -delete && rm dist/blog/ssr-manifest.json"
},
"overrides": {
"node-ipc@>9.2.1 <10": "9.2.1",
"node-ipc@>10.1.0": "10.1.0"
},
"dependencies": {
"vue": "^3.2.45"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@types/escape-html": "^1.0.1",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.11.14",
"@types/prismjs": "^1.26.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"@vueuse/head": "^1.0.22",
"escape-html": "^1.0.3",
"eslint": "^8.29.0",
"eslint-plugin-vue": "^9.3.0",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"npm-run-all": "^4.1.5",
"prismjs": "^1.29.0",
"sass": "^1.56.2",
"typescript": "~4.7.4",
"vite": "^4.1.1",
"vite-plugin-inspect": "^0.7.15",
"vite-ssg": "^0.22.1",
"vue-router": "^4.1.6",
"vue-tsc": "^1.0.12"
}
}