package.json 1.6 KB
Newer Older
E
init  
Evan You 已提交
1 2 3 4 5
{
  "name": "vuepress",
  "version": "1.0.0",
  "description": "Minimalistic doc generator with Vue component based layout system",
  "main": "lib/index.js",
E
wip  
Evan You 已提交
6 7 8
  "bin": {
    "vuepress": "bin/vuepress.js"
  },
E
init  
Evan You 已提交
9
  "scripts": {
E
tweaks  
Evan You 已提交
10
    "dev": "node bin/vuepress dev",
E
wip  
Evan You 已提交
11
    "build": "node bin/vuepress build"
E
init  
Evan You 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
  },
  "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
wip  
Evan You 已提交
29 30 31
    "autoprefixer": "^8.2.0",
    "buble": "^0.19.3",
    "buble-loader": "^0.5.0",
E
Evan You 已提交
32
    "chalk": "^2.3.2",
E
tweaks  
Evan You 已提交
33
    "chokidar": "^2.0.3",
E
Evan You 已提交
34
    "connect-history-api-fallback": "^1.5.0",
E
init  
Evan You 已提交
35 36 37
    "css-loader": "^0.28.11",
    "file-loader": "^1.1.11",
    "globby": "^8.0.1",
E
Evan You 已提交
38
    "html-webpack-plugin": "^3.2.0",
E
Evan You 已提交
39
    "koa-connect": "^2.0.1",
E
init  
Evan You 已提交
40
    "markdown-it": "^8.4.1",
E
Evan You 已提交
41
    "markdown-it-container": "^2.0.0",
E
init  
Evan You 已提交
42
    "mini-css-extract-plugin": "^0.4.0",
E
wip  
Evan You 已提交
43
    "mkdirp": "^0.5.1",
E
Evan You 已提交
44
    "nprogress": "^0.2.0",
E
wip  
Evan You 已提交
45
    "postcss-loader": "^2.1.3",
E
Evan You 已提交
46
    "prismjs": "^1.13.0",
E
Evan You 已提交
47
    "rimraf": "^2.6.2",
E
init  
Evan You 已提交
48 49 50
    "url-loader": "^1.0.1",
    "vue": "^2.5.16",
    "vue-loader": "^15.0.0-beta.7",
E
Evan You 已提交
51
    "vue-router": "^3.0.1",
E
init  
Evan You 已提交
52 53 54
    "vue-server-renderer": "^2.5.16",
    "vue-template-compiler": "^2.5.16",
    "webpack": "^4.4.1",
E
Evan You 已提交
55
    "webpack-chain": "^4.5.0",
E
Evan You 已提交
56 57 58 59
    "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 已提交
60 61
  }
}