-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.99 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
{
"name": "@starknt/website",
"version": "0.0.0",
"packageManager": "pnpm@7.5.2",
"description": "starknt's personal website",
"author": "starknt",
"license": "MIT",
"keywords": [
"vue",
"vue3",
"vite",
"starknt",
"website",
"personal"
],
"scripts": {
"dev": "vite",
"build": "vite-ssg build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"test": "vitest"
},
"dependencies": {
"@vueuse/core": "^10.1.2",
"@vueuse/head": "^1.1.26",
"dayjs": "^1.11.8",
"unocss": "^0.53.0",
"vue": "^3.3.4",
"vue-starport": "^0.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.5",
"@iconify/json": "^2.2.74",
"@testing-library/vue": "^7.0.0",
"@types/diacritics": "^1.3.1",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/node": "^20.2.5",
"@unocss/reset": "^0.53.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"diacritics": "^1.3.0",
"eslint": "^8.42.0",
"gray-matter": "^4.0.3",
"happy-dom": "^9.20.3",
"lint-staged": "^13.2.2",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-shiki": "^0.9.0",
"markdown-it-table-of-contents": "^0.6.0",
"pnpm": "^8.6.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.1.3",
"unplugin-auto-import": "^0.16.4",
"unplugin-vue-components": "^0.25.0",
"vite": "^4.3.9",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-pwa": "^0.16.3",
"vite-plugin-vue-markdown": "^0.23.5",
"vite-ssg": "^0.22.2",
"vitest": "^0.31.4",
"vue-router": "^4.2.2",
"vue-tsc": "^1.6.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts, js, vue}": [
"eslint --fix",
"git add"
],
"*.{json, yml}": [
"eslint --fix",
"git add"
]
}
}