forked from bsmg/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.33 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
{
"name": "@bsmg/wiki",
"version": "0.1.0",
"description": "BSMG Wiki",
"repository": "[email protected]:bsmg/wiki.git",
"author": "Jack Baron <[email protected]> (https://www.jackbaron.com)",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint . --ext js,md,vue",
"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.5.4",
"@vuepress/plugin-medium-zoom": "^1.5.4",
"@vuepress/plugin-nprogress": "^1.5.4",
"@vuepress/plugin-search": "^1.5.4",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"dateformat": "^3.0.3",
"eslint": "^5.6.0",
"eslint-config-sora": "^3.0.2",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-vue": "^5.2.2",
"markdown-it-footnote": "^3.0.2",
"markdown-it-mark": "^3.0.0",
"markdown-it-task-lists": "^2.1.1",
"rimraf": "^3.0.2",
"vuepress": "^1.5.4",
"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": "^2.3.0"
}
}