-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.08 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
{
"name": "my-vue-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"prettier": "prettier --write ./src",
"test": "lint-staged && npm run lint",
"rm:dist": "rimraf dist ./website/.vitepress/dist",
"dev": "vitepress dev website",
"build": "vue-tsc && vitepress build website",
"preview": "vitepress preview website"
},
"dependencies": {
"@vueuse/core": "^9.5.0",
"ajv": "^8.11.2",
"buffer": "^6.0.3",
"element-plus": "^2.2.21",
"github-markdown-css": "^5.1.0",
"markdown-it": "^13.0.1",
"showdown": "^2.1.0",
"uuid": "^9.0.0",
"vue": "^3.2.41",
"vue-router": "4",
"yaml": "^2.1.3"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.10",
"@iconify-json/simple-icons": "^1.1.34",
"@types/fs-extra": "^9.0.13",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.11.9",
"@types/showdown": "^2.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@unocss/preset-attributify": "^0.46.5",
"@unocss/preset-icons": "^0.46.5",
"@unocss/preset-mini": "^0.46.5",
"@unocss/preset-uno": "^0.46.5",
"@vitejs/plugin-vue": "^3.2.0",
"eslint": "^8.29.0",
"eslint-plugin-vue": "^9.8.0",
"filesize": "^10.0.6",
"fs-extra": "^11.1.0",
"gray-matter": "^4.0.3",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.4",
"unocss": "^0.46.5",
"unplugin-auto-import": "^0.11.4",
"unplugin-vue-components": "^0.22.9",
"vite": "^3.2.3",
"vitepress": "1.0.0-alpha.32",
"vue-tsc": "^1.0.9"
},
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
},
"lint-staged": {
"*.{html,md,json,yml,js,ts,vue}": "prettier --write",
"*.{js,jsx,ts,vue}": "eslint --fix"
}
}