package.json 1.9 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
Evan You 已提交
29 30
    "@babel/core": "^7.0.0-beta.44",
    "@vue/babel-preset-app": "^3.0.0-beta.6",
E
wip  
Evan You 已提交
31
    "autoprefixer": "^8.2.0",
E
Evan You 已提交
32
    "babel-loader": "^8.0.0-beta.2",
E
Evan You 已提交
33
    "chalk": "^2.3.2",
E
tweaks  
Evan You 已提交
34
    "chokidar": "^2.0.3",
E
Evan You 已提交
35
    "connect-history-api-fallback": "^1.5.0",
E
Evan You 已提交
36
    "copy-webpack-plugin": "^4.5.1",
E
init  
Evan You 已提交
37 38 39
    "css-loader": "^0.28.11",
    "file-loader": "^1.1.11",
    "globby": "^8.0.1",
E
Evan You 已提交
40
    "html-webpack-plugin": "^3.2.0",
E
Evan You 已提交
41
    "koa-connect": "^2.0.1",
E
Evan You 已提交
42
    "koa-static": "^4.0.2",
E
Evan You 已提交
43
    "loader-utils": "^1.1.0",
E
init  
Evan You 已提交
44
    "markdown-it": "^8.4.1",
E
Evan You 已提交
45
    "markdown-it-anchor": "^4.0.0",
E
Evan You 已提交
46
    "markdown-it-container": "^2.0.0",
E
Evan You 已提交
47
    "markdown-it-table-of-contents": "^0.3.3",
E
init  
Evan You 已提交
48
    "mini-css-extract-plugin": "^0.4.0",
E
wip  
Evan You 已提交
49
    "mkdirp": "^0.5.1",
E
Evan You 已提交
50
    "nprogress": "^0.2.0",
E
wip  
Evan You 已提交
51
    "postcss-loader": "^2.1.3",
E
Evan You 已提交
52
    "prismjs": "^1.13.0",
E
Evan You 已提交
53
    "rimraf": "^2.6.2",
E
init  
Evan You 已提交
54 55 56
    "url-loader": "^1.0.1",
    "vue": "^2.5.16",
    "vue-loader": "^15.0.0-beta.7",
E
Evan You 已提交
57
    "vue-router": "^3.0.1",
E
init  
Evan You 已提交
58 59 60
    "vue-server-renderer": "^2.5.16",
    "vue-template-compiler": "^2.5.16",
    "webpack": "^4.4.1",
E
Evan You 已提交
61
    "webpack-chain": "^4.5.0",
E
Evan You 已提交
62 63 64 65
    "webpack-node-externals": "^1.7.2",
    "webpack-serve": "^0.3.1",
    "webpackbar": "^2.6.1",
    "yaml-front-matter": "^4.0.0"
E
Evan You 已提交
66 67 68 69
  },
  "browserslist": [
    "> 1%"
  ]
E
init  
Evan You 已提交
70
}