Updated dependencies
This commit is contained in:
parent
ba966c30a3
commit
87d3afb196
5 changed files with 14148 additions and 7706 deletions
|
@ -5,8 +5,7 @@
|
|||
"node": true
|
||||
},
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:vue/strongly-recommended"
|
||||
"eslint:recommended"
|
||||
],
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 2017,
|
||||
|
|
|
@ -32,6 +32,6 @@ Learn more about how LBRY works from this ecosystem overview.
|
|||
|
||||
## 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/).
|
||||
- Learn how to [contribute to LBRY](/contribute/) or [build your own application](/build/).
|
||||
|
|
14115
npm-shrinkwrap.json
generated
Normal file
14115
npm-shrinkwrap.json
generated
Normal file
File diff suppressed because it is too large
Load diff
55
package.json
55
package.json
|
@ -1,54 +1,61 @@
|
|||
{
|
||||
"name": "lbry.tech",
|
||||
"version": "1.0.0",
|
||||
"description": "Documentation for the LBRY protocol and associated projects",
|
||||
"author": "LBRY Team",
|
||||
"version": "1.0.0",
|
||||
"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": {
|
||||
"@octokit/rest": "^15.4.0",
|
||||
"async": "^2.6.0",
|
||||
"@octokit/rest": "^15.9.4",
|
||||
"async": "^2.6.1",
|
||||
"body-parser": "^1.18.3",
|
||||
"cors": "^2.8.4",
|
||||
"cron": "^1.3.0",
|
||||
"dotenv": "^5.0.1",
|
||||
"dotenv": "^6.0.0",
|
||||
"express": "^4.16.3",
|
||||
"graceful-fs": "^4.1.11",
|
||||
"heroku-ssl-redirect": "0.0.4",
|
||||
"highlight.js": "^9.12.0",
|
||||
"jquery": "2.1.3",
|
||||
"jquery": "3.3.1",
|
||||
"jquery-ui": "^1.12.1",
|
||||
"jquery.tocify": "^1.9.1",
|
||||
"lunr": "0.5.7",
|
||||
"lunr": "2.3.0",
|
||||
"markdown-it": "^8.4.1",
|
||||
"markdown-it-container": "^2.0.0",
|
||||
"markdown-it-wikilinks": "^1.0.1",
|
||||
"node-sass": "^4.9.0",
|
||||
"node-sass": "^4.9.1",
|
||||
"redis": "^2.8.0",
|
||||
"request": "^2.85.0",
|
||||
"sass-loader": "^7.0.1",
|
||||
"request": "^2.87.0",
|
||||
"sass-loader": "^7.0.3",
|
||||
"serve-static": "^1.13.2",
|
||||
"slack-node": "^0.1.8",
|
||||
"vue": "^2.5.16",
|
||||
"vue-images-loaded": "^1.1.2",
|
||||
"vue-moment": "^3.2.0",
|
||||
"vue-resource": "^1.5.0",
|
||||
"vuepress": "^0.10.0"
|
||||
"vue-moment": "^4.0.0",
|
||||
"vue-resource": "^1.5.1",
|
||||
"vuepress": "^0.10.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chai": "^4.1.2",
|
||||
"chai-cheerio": "^1.0.0",
|
||||
"chai-http": "^4.0.0",
|
||||
"cheerio": "^1.0.0-rc.2",
|
||||
"eslint": "^5.0.1",
|
||||
"eslint-plugin-vue": "^4.5.0",
|
||||
"mocha": "^5.2.0"
|
||||
"mocha": "^5.2.0",
|
||||
"npm-run-all": "^4.1.3",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue