generated from YunYouJun/web-resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.52 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "web-resume",
"type": "module",
"version": "0.3.0",
"private": true,
"packageManager": "[email protected]",
"description": "Web 简历",
"author": {
"email": "[email protected]",
"name": "wh1teAlter"
},
"homepage": "https://resume.elpsy.cn",
"repository": {
"url": "https://github.com/wh1teAlter/web-resume",
"type": "git"
},
"scripts": {
"dev": "vite --host",
"lint": "eslint .",
"serve": "vite preview",
"build": "cross-env NODE_ENV=production vite build",
"build:ssg": "cross-env NODE_ENV=production vite-ssg build",
"resume": "vite --host --open /local",
"schema": "tsx scripts/schema.ts",
"prepare": "husky install",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit",
"test": "vitest",
"test:unit": "vitest"
},
"dependencies": {
"@vueuse/core": "^10.2.1",
"@vueuse/head": "^1.1.26",
"js-yaml": "^4.1.0",
"monaco-editor": "^0.40.0",
"monaco-yaml": "4.0.4",
"nprogress": "^0.2.0",
"pinia": "^2.1.4",
"prism-theme-vars": "^0.2.4",
"sass": "^1.63.6",
"vue": "^3.3.4",
"vue-about-me": "^1.2.7",
"vue-demi": "^0.14.5",
"vue-i18n": "^9.2.2",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.5",
"@gtm-support/vue-gtm": "^1.6.0",
"@headlessui/vue": "^1.7.14",
"@iconify-json/mdi": "^1.1.53",
"@iconify-json/ri": "^1.1.10",
"@intlify/unplugin-vue-i18n": "^0.12.2",
"@rollup/plugin-yaml": "^4.1.1",
"@types/js-yaml": "^4.0.5",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/node": "^20.4.2",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^4.2.3",
"@yunlefun/vue-components": "0.0.5-beta.4",
"ajv": "^8.12.0",
"critters": "^0.0.19",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-prism": "^2.3.0",
"star-markdown-css": "^0.4.2",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"typescript-json-schema": "^0.59.0",
"unocss": "^0.53.5",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.4.4",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-vue-layouts": "^0.8.0",
"vite-plugin-vue-markdown": "^0.23.5",
"vite-ssg": "0.23.0",
"vitest": "^0.33.0",
"vue-tsc": "^1.8.5"
},
"lint-staged": {
"*.{vue,ts,js,yml}": "eslint --fix",
"src/types/*.ts": "npm run schema"
}
}