-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "northword-blog",
"version": "1.0.0",
"scripts": {
"build:vite": "vuepress build src",
"dev:vite": "vuepress dev src",
"dev:vite-clean": "vuepress dev src --clean-cache",
"lint": "prettier --check --write .",
"lint:check": "prettier --check .",
"lint-md": "markdownlint **/*.md --ignore node_modules --fix",
"test": "echo \"Warning: no test specified\" && exit 0",
"update": "pnpm update",
"docs:update-package": "npx vp-update"
},
"license": "MIT",
"dependencies": {
"@vuepress/client": "2.0.0-rc.0",
"vue": "^3.3.13",
"vuepress": "2.0.0-rc.0",
"vuepress-plugin-search-pro": "2.0.0-rc.6",
"vuepress-theme-hope": "2.0.0-rc.6"
},
"devDependencies": {
"katex": "^0.16.9",
"markdownlint-cli": "^0.38.0",
"mermaid": "^10.6.1",
"prettier": "^2.8.8"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"react",
"react-dom",
"webpack"
]
}
}
}