package.json 1.1 KB
Newer Older
E
init  
Evan You 已提交
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
{
  "name": "vuepress",
  "version": "1.0.0",
  "description": "Minimalistic doc generator with Vue component based layout system",
  "main": "lib/index.js",
  "scripts": {
    "test": "node bin/vuepress"
  },
  "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": {
    "css-loader": "^0.28.11",
    "file-loader": "^1.1.11",
    "globby": "^8.0.1",
E
Evan You 已提交
28
    "html-webpack-plugin": "^3.2.0",
E
init  
Evan You 已提交
29
    "markdown-it": "^8.4.1",
E
Evan You 已提交
30
    "markdown-to-vue-loader": "^0.4.0",
E
init  
Evan You 已提交
31
    "mini-css-extract-plugin": "^0.4.0",
E
Evan You 已提交
32 33
    "nprogress": "^0.2.0",
    "rimraf": "^2.6.2",
E
init  
Evan You 已提交
34 35 36
    "url-loader": "^1.0.1",
    "vue": "^2.5.16",
    "vue-loader": "^15.0.0-beta.7",
E
Evan You 已提交
37
    "vue-router": "^3.0.1",
E
init  
Evan You 已提交
38 39 40
    "vue-server-renderer": "^2.5.16",
    "vue-template-compiler": "^2.5.16",
    "webpack": "^4.4.1",
E
Evan You 已提交
41 42
    "webpack-chain": "^4.5.0",
    "webpack-dev-server": "^3.1.1"
E
init  
Evan You 已提交
43 44
  }
}