linux-tutorial/docs/package.json

31 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2019-05-10 18:35:33 +08:00
{
2019-12-30 16:30:18 +08:00
"name": "linux-tutorial",
2020-02-10 23:11:22 +08:00
"version": "1.0.0",
"private": true,
2019-12-30 16:30:18 +08:00
"scripts": {
2020-02-10 23:11:22 +08:00
"clean": "rimraf dist && rimraf .temp",
"build": "npm run clean && vuepress build ./ --temp .temp",
2021-05-13 17:24:59 +08:00
"start": "vuepress dev ./ --temp .temp",
"lint": "markdownlint -r markdownlint-rule-emphasis-style -c ./.markdownlint.json **/*.md -i node_modules",
"lint:fix": "markdownlint -f -r markdownlint-rule-emphasis-style -c ./.markdownlint.json **/*.md -i node_modules",
2020-02-10 23:11:22 +08:00
"show-help": "vuepress --help",
"view-info": "vuepress view-info ./ --temp .temp"
2019-12-30 16:30:18 +08:00
},
"devDependencies": {
2021-05-13 17:24:59 +08:00
"@vuepress/plugin-active-header-links": "^1.8.2",
"@vuepress/plugin-back-to-top": "^1.8.2",
"@vuepress/plugin-medium-zoom": "^1.8.2",
"@vuepress/plugin-pwa": "^1.8.2",
"@vuepress/theme-vue": "^1.8.2",
"markdownlint-cli": "^0.25.0",
"markdownlint-rule-emphasis-style": "^1.0.1",
2020-02-10 23:11:22 +08:00
"rimraf": "^3.0.1",
"vue-toasted": "^1.1.25",
2021-05-13 17:24:59 +08:00
"vuepress": "^1.8.2",
2020-02-10 23:11:22 +08:00
"vuepress-plugin-flowchart": "^1.4.2"
2021-05-13 17:24:59 +08:00
},
"dependencies": {
"moment": "^2.29.1"
2019-12-30 16:30:18 +08:00
}
2019-05-10 18:35:33 +08:00
}