forked from bsmg/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.48 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
{
"name": "@bsmg/wiki",
"version": "0.1.0",
"description": "BSMG Wiki",
"repository": "git@github.com:bsmg/wiki.git",
"author": "Jack Baron <jackmbaron@gmail.com> (https://www.jackbaron.com)",
"license": "MIT",
"private": true,
"engines": {
"node": ">=14"
},
"scripts": {
"lint:markdown": "markdownlint --ignore ./wiki/{fr,ja,de,nl}/**/*.md ./wiki/**/*.md",
"lint:images": "node ./scripts/checkImages.js",
"lint": "yarn run lint:markdown && yarn run lint:images",
"predev": "rimraf .temp",
"dev": "vuepress dev wiki --temp .temp",
"prebuild": "rimraf wiki/.vuepress/dist",
"build": "vuepress build wiki",
"build:prod": "cross-env NODE_ENV=production yarn run build"
},
"devDependencies": {
"@vuepress/plugin-last-updated": "^1.8.2",
"@vuepress/plugin-medium-zoom": "^1.8.2",
"@vuepress/plugin-nprogress": "^1.8.2",
"@vuepress/plugin-search": "^1.8.2",
"byte-size": "^8.0.0",
"cross-env": "^7.0.3",
"dateformat": "^4.5.1",
"globby": "^11.0.4",
"kleur": "^4.1.4",
"markdown-it-footnote": "^3.0.3",
"markdown-it-mark": "^3.0.1",
"markdown-it-task-lists": "^2.1.1",
"markdownlint-cli": "^0.27.1",
"rimraf": "^3.0.2",
"vuepress": "^1.8.2",
"vuepress-plugin-container": "^2.1.5",
"vuepress-plugin-named-chunks": "^1.1.4",
"vuepress-plugin-seo": "^0.1.4",
"vuepress-plugin-sitemap": "^2.3.1",
"vuepress-plugin-smooth-scroll": "^0.0.10",
"vuepress-theme-yuu": "^3.1.1"
}
}