package.json 1.3 KB
Newer Older
E
init  
Evan You 已提交
1 2 3 4 5 6
{
  "name": "vuepress",
  "version": "1.0.0",
  "description": "Minimalistic doc generator with Vue component based layout system",
  "main": "lib/index.js",
  "scripts": {
E
Evan You 已提交
7
    "dev": "node bin/vuepress"
E
init  
Evan You 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vuejs/vuepress.git"
  },
  "keywords": [
    "documentation",
    "vue",
    "generator"
  ],
  "author": "Evan You",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/vuejs/vuepress/issues"
  },
  "homepage": "https://github.com/vuejs/vuepress#readme",
  "dependencies": {
E
Evan You 已提交
25 26
    "chalk": "^2.3.2",
    "connect-history-api-fallback": "^1.5.0",
E
init  
Evan You 已提交
27 28 29
    "css-loader": "^0.28.11",
    "file-loader": "^1.1.11",
    "globby": "^8.0.1",
E
Evan You 已提交
30
    "html-webpack-plugin": "^3.2.0",
E
Evan You 已提交
31
    "koa-connect": "^2.0.1",
E
init  
Evan You 已提交
32
    "markdown-it": "^8.4.1",
E
Evan You 已提交
33
    "markdown-to-vue-loader": "^0.4.0",
E
init  
Evan You 已提交
34
    "mini-css-extract-plugin": "^0.4.0",
E
Evan You 已提交
35 36
    "nprogress": "^0.2.0",
    "rimraf": "^2.6.2",
E
init  
Evan You 已提交
37 38 39
    "url-loader": "^1.0.1",
    "vue": "^2.5.16",
    "vue-loader": "^15.0.0-beta.7",
E
Evan You 已提交
40
    "vue-router": "^3.0.1",
E
init  
Evan You 已提交
41 42 43
    "vue-server-renderer": "^2.5.16",
    "vue-template-compiler": "^2.5.16",
    "webpack": "^4.4.1",
E
Evan You 已提交
44
    "webpack-chain": "^4.5.0",
E
Evan You 已提交
45 46 47 48
    "webpack-node-externals": "^1.7.2",
    "webpack-serve": "^0.3.1",
    "webpackbar": "^2.6.1",
    "yaml-front-matter": "^4.0.0"
E
init  
Evan You 已提交
49 50
  }
}