-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
{
"private": true,
"packageManager": "pnpm@8.2.0",
"scripts": {
"build": "vite build",
"dev": "vite --port 3333 --open",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^9.13.0",
"marked": "^4.3.0",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.4",
"@iconify-json/carbon": "^1.1.16",
"@types/marked": "^4.0.8",
"@types/node": "^18.15.11",
"@unocss/eslint-config": "^0.51.4",
"@unocss/reset": "^0.51.4",
"@vitejs/plugin-vue": "^4.1.0",
"@vue-macros/volar": "^0.9.5",
"@vue/test-utils": "^2.3.2",
"eslint": "^8.38.0",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.1",
"pnpm": "^8.2.0",
"simple-git-hooks": "^2.8.1",
"taze": "^0.9.1",
"typescript": "^4.9.5",
"unocss": "^0.51.4",
"unplugin-auto-import": "^0.15.2",
"unplugin-vue-components": "^0.24.1",
"unplugin-vue-macros": "^2.0.0",
"vite": "^4.2.1",
"vite-plugin-checker": "^0.5.6",
"vite-plugin-pages": "^0.29.0",
"vitest": "^0.30.1",
"vue-tsc": "^1.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"eslintConfig": {
"extends": [
"@antfu",
"@unocss"
],
"ignorePatterns": ["*.yml"]
}
}