-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.47 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "pnpm lint:js && pnpm lint:prettier",
"lintfix": "prettier --write --list-different . && pnpm lint:js --fix"
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@bytemd/plugin-breaks": "^1.21.0",
"@bytemd/plugin-frontmatter": "^1.21.0",
"@bytemd/plugin-gemoji": "^1.21.0",
"@bytemd/plugin-gfm": "^1.21.0",
"@bytemd/plugin-highlight-ssr": "^1.21.0",
"@bytemd/plugin-math-ssr": "^1.21.0",
"@bytemd/plugin-medium-zoom": "^1.21.0",
"@bytemd/plugin-mermaid": "^1.21.0",
"@bytemd/vue-next": "^1.21.0",
"@vueuse/core": "^10.9.0",
"@zerotower/bytemd-plugin-card-link": "^1.1.0",
"@zerotower/bytemd-plugin-copy-code": "^1.1.0",
"@zerotower/bytemd-plugin-switch-highlight": "1.0.2",
"@zerotower/bytemd-plugin-switch-theme": "^1.0.1",
"add": "^2.0.6",
"ant-design-vue": "^4.1.2",
"bytemd": "^1.21.0",
"dayjs": "^1.11.13",
"highlight.js": "^11.10.0",
"js-yaml": "^4.1.0",
"juejin-markdown-themes": "^1.34.0",
"nuxt": "^3.13.0",
"pinia": "^2.1.7",
"typescript": "^5.5.0",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/types": "^19.0.3",
"@iconify-icons/ant-design": "^1.2.7",
"@iconify/utils": "^2.1.33",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@pinia/nuxt": "^0.5.1",
"@types/js-yaml": "^4.0.9",
"@typescript-eslint/parser": "^8.6.0",
"@unocss/nuxt": "^0.58.5",
"@vueuse/nuxt": "^10.9.0",
"add": "^2.0.6",
"cz-git": "^1.9.0",
"czg": "^1.9.0",
"dotenv": "^16.0.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.0",
"less": "^4.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.3.3",
"unocss": "^0.58.5"
},
"lint-staged": {
"package.json": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12.0",
"pnpm": ">=8.10.0"
}
}