Updated deps
This commit is contained in:
parent
a5a4ba58a7
commit
9feedadceb
2 changed files with 7 additions and 6 deletions
11
package.json
11
package.json
|
@ -2,6 +2,7 @@
|
||||||
"author": "LBRY Team",
|
"author": "LBRY Team",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/polyfill": "^7.0.0",
|
"@babel/polyfill": "^7.0.0",
|
||||||
|
"@inc/fastify-ws": "^1.1.0",
|
||||||
"@octokit/rest": "^16.1.0",
|
"@octokit/rest": "^16.1.0",
|
||||||
"@slack/client": "^4.8.0",
|
"@slack/client": "^4.8.0",
|
||||||
"app-root-path": "^2.1.0",
|
"app-root-path": "^2.1.0",
|
||||||
|
@ -19,11 +20,10 @@
|
||||||
"decamelize": "^2.0.0",
|
"decamelize": "^2.0.0",
|
||||||
"dedent": "^0.7.0",
|
"dedent": "^0.7.0",
|
||||||
"dotenv": "^6.1.0",
|
"dotenv": "^6.1.0",
|
||||||
"fastify": "^1.13.1",
|
"fastify": "^2.0.0-rc.1",
|
||||||
"fastify-compress": "^0.7.1",
|
"fastify-compress": "^0.7.1",
|
||||||
"fastify-helmet": "^3.0.0",
|
"fastify-helmet": "^3.0.0",
|
||||||
"fastify-plugin": "^1.3.0",
|
"fastify-static": "^2.0.0",
|
||||||
"fastify-static": "^1.0.0",
|
|
||||||
"fastify-ws": "^1.0.0",
|
"fastify-ws": "^1.0.0",
|
||||||
"front-matter": "^3.0.1",
|
"front-matter": "^3.0.1",
|
||||||
"fs-exists-sync": "^0.1.0",
|
"fs-exists-sync": "^0.1.0",
|
||||||
|
@ -59,11 +59,12 @@
|
||||||
"@inc/eslint-config": "^1.1.2",
|
"@inc/eslint-config": "^1.1.2",
|
||||||
"@inc/sasslint-config": "^1.1.2",
|
"@inc/sasslint-config": "^1.1.2",
|
||||||
"@lbry/color": "^1.0.5",
|
"@lbry/color": "^1.0.5",
|
||||||
"@lbry/components": "^1.4.4",
|
"@lbry/components": "^1.5.1",
|
||||||
"eslint": "^5.9.0",
|
"eslint": "^5.9.0",
|
||||||
"husky": "^1.2.0",
|
"husky": "^1.2.0",
|
||||||
"nodemon": "^1.18.7",
|
"nodemon": "^1.18.7",
|
||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
|
"pino-pretty": "^2.4.0",
|
||||||
"sass": "^1.15.1",
|
"sass": "^1.15.1",
|
||||||
"sass-lint": "^1.12.1",
|
"sass-lint": "^1.12.1",
|
||||||
"snazzy": "^8.0.0",
|
"snazzy": "^8.0.0",
|
||||||
|
@ -86,7 +87,7 @@
|
||||||
"format": "eslint '**/*.js' --fix --ignore-pattern '/app/dist/'",
|
"format": "eslint '**/*.js' --fix --ignore-pattern '/app/dist/'",
|
||||||
"start": "npm run css && NODE_ENV=production node server",
|
"start": "npm run css && NODE_ENV=production node server",
|
||||||
"test": "run-s test:*",
|
"test": "run-s test:*",
|
||||||
"test:dependencies": "updates --update ./ --exclude prismjs",
|
"test:dependencies": "updates --update ./ --exclude fastify,prismjs",
|
||||||
"test:lint": "standardx --verbose | snazzy",
|
"test:lint": "standardx --verbose | snazzy",
|
||||||
"test:sass": "sass-lint --config ./node_modules/@inc/sasslint-config/config.json --verbose --no-exit",
|
"test:sass": "sass-lint --config ./node_modules/@inc/sasslint-config/config.json --verbose --no-exit",
|
||||||
"watch": "run-p watch:*",
|
"watch": "run-p watch:*",
|
||||||
|
|
|
@ -27,7 +27,7 @@ const messageSlack = local("app/helpers/slack").default;
|
||||||
fastify
|
fastify
|
||||||
.use(cors())
|
.use(cors())
|
||||||
.register(require("fastify-compress"))
|
.register(require("fastify-compress"))
|
||||||
.register(require("fastify-ws"))
|
.register(require("@inc/fastify-ws"))
|
||||||
.register(require("fastify-helmet"), {
|
.register(require("fastify-helmet"), {
|
||||||
hidePoweredBy: { setTo: "LBRY" }
|
hidePoweredBy: { setTo: "LBRY" }
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue