Updated dependencies

This commit is contained in:
ポール ウェッブ 2018-07-05 17:33:13 -05:00
parent ba966c30a3
commit 87d3afb196
5 changed files with 14148 additions and 7706 deletions

View file

@ -5,8 +5,7 @@
"node": true "node": true
}, },
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended"
"plugin:vue/strongly-recommended"
], ],
"parserOptions": { "parserOptions": {
"ecmaVersion": 2017, "ecmaVersion": 2017,

View file

@ -32,6 +32,6 @@ Learn more about how LBRY works from this ecosystem overview.
## Keep Diving ## Keep Diving
- Explore live metadata and add your own blockchain entry on [the Tour](/tour.html). - Explore live metadata and add your own blockchain entry on [the Tour](/tour/).
- Read the whitepaper, the API specification and other documentation in [Resources](/resources/). - Read the whitepaper, the API specification and other documentation in [Resources](/resources/).
- Learn how to [contribute to LBRY](/contribute/) or [build your own application](/build/). - Learn how to [contribute to LBRY](/contribute/) or [build your own application](/build/).

14115
npm-shrinkwrap.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,54 +1,61 @@
{ {
"name": "lbry.tech", "name": "lbry.tech",
"version": "1.0.0",
"description": "Documentation for the LBRY protocol and associated projects", "description": "Documentation for the LBRY protocol and associated projects",
"author": "LBRY Team", "author": "LBRY Team",
"version": "1.0.0",
"private": true, "private": true,
"scripts": {
"dev": "./node_modules/vuepress/bin/vuepress.js dev content",
"start": "./node_modules/vuepress/bin/vuepress.js build content && node server.js",
"test": "./node_modules/vuepress/bin/vuepress.js build content && ./node_modules/mocha/bin/mocha --exit"
},
"engines": {
"node": "10.2.x"
},
"license": "ISC",
"dependencies": { "dependencies": {
"@octokit/rest": "^15.4.0", "@octokit/rest": "^15.9.4",
"async": "^2.6.0", "async": "^2.6.1",
"body-parser": "^1.18.3", "body-parser": "^1.18.3",
"cors": "^2.8.4", "cors": "^2.8.4",
"cron": "^1.3.0", "cron": "^1.3.0",
"dotenv": "^5.0.1", "dotenv": "^6.0.0",
"express": "^4.16.3", "express": "^4.16.3",
"graceful-fs": "^4.1.11", "graceful-fs": "^4.1.11",
"heroku-ssl-redirect": "0.0.4", "heroku-ssl-redirect": "0.0.4",
"highlight.js": "^9.12.0", "highlight.js": "^9.12.0",
"jquery": "2.1.3", "jquery": "3.3.1",
"jquery-ui": "^1.12.1", "jquery-ui": "^1.12.1",
"jquery.tocify": "^1.9.1", "jquery.tocify": "^1.9.1",
"lunr": "0.5.7", "lunr": "2.3.0",
"markdown-it": "^8.4.1", "markdown-it": "^8.4.1",
"markdown-it-container": "^2.0.0", "markdown-it-container": "^2.0.0",
"markdown-it-wikilinks": "^1.0.1", "markdown-it-wikilinks": "^1.0.1",
"node-sass": "^4.9.0", "node-sass": "^4.9.1",
"redis": "^2.8.0", "redis": "^2.8.0",
"request": "^2.85.0", "request": "^2.87.0",
"sass-loader": "^7.0.1", "sass-loader": "^7.0.3",
"serve-static": "^1.13.2",
"slack-node": "^0.1.8", "slack-node": "^0.1.8",
"vue": "^2.5.16", "vue": "^2.5.16",
"vue-images-loaded": "^1.1.2", "vue-images-loaded": "^1.1.2",
"vue-moment": "^3.2.0", "vue-moment": "^4.0.0",
"vue-resource": "^1.5.0", "vue-resource": "^1.5.1",
"vuepress": "^0.10.0" "vuepress": "^0.10.2"
}, },
"devDependencies": { "devDependencies": {
"chai": "^4.1.2", "chai": "^4.1.2",
"chai-cheerio": "^1.0.0", "chai-cheerio": "^1.0.0",
"chai-http": "^4.0.0", "chai-http": "^4.0.0",
"cheerio": "^1.0.0-rc.2", "cheerio": "^1.0.0-rc.2",
"eslint": "^5.0.1", "mocha": "^5.2.0",
"eslint-plugin-vue": "^4.5.0", "npm-run-all": "^4.1.3",
"mocha": "^5.2.0" "snazzy": "^7.1.1",
"standardx": "^2.1.0"
},
"peerDependencies": {
"ajv": "^6.0.0",
"eslint": "^5.0.1"
},
"engines": {
"node": "10.2.x"
},
"scripts": {
"dev": "./node_modules/vuepress/bin/vuepress.js dev content",
"start": "./node_modules/vuepress/bin/vuepress.js build content && node server.js",
"test": "run-p test:*",
"test:lint": "standardx --verbose | snazzy",
"test:mocha": "./node_modules/vuepress/bin/vuepress.js build content && ./node_modules/mocha/bin/mocha --exit"
} }
} }

7679
yarn.lock

File diff suppressed because it is too large Load diff