101 lines
3.2 KiB
JSON
Executable file
101 lines
3.2 KiB
JSON
Executable file
{
|
|
"author": "LBRY Team",
|
|
"dependencies": {
|
|
"@babel/polyfill": "^7.2.5",
|
|
"@inc/fastify-ws": "^1.1.0",
|
|
"@octokit/rest": "^16.6.1",
|
|
"@slack/client": "^4.8.0",
|
|
"app-root-path": "^2.1.0",
|
|
"async": "^2.6.1",
|
|
"async-es": "^2.6.1",
|
|
"choo": "^6.13.1",
|
|
"choo-async": "^0.1.1",
|
|
"choo-devtools": "^2.5.1",
|
|
"choo-ssr": "^0.2.1",
|
|
"choo-websocket": "^2.0.0",
|
|
"colorette": "^1.0.7",
|
|
"cors": "^2.8.5",
|
|
"cron": "^1.6.0",
|
|
"date-format-lite": "^17.7.0",
|
|
"decamelize": "^2.0.0",
|
|
"dedent": "^0.7.0",
|
|
"dotenv": "^6.2.0",
|
|
"fastify": "~1.13.3",
|
|
"fastify-compress": "^0.7.1",
|
|
"fastify-helmet": "^3.0.0",
|
|
"fastify-static": "^1.1.0",
|
|
"fastify-ws": "^1.0.0",
|
|
"front-matter": "^3.0.1",
|
|
"fs-exists-sync": "^0.1.0",
|
|
"got": "^9.5.0",
|
|
"graceful-fs": "^4.1.15",
|
|
"make-promises-safe": "^4.0.0",
|
|
"markdown-it": "^8.4.2",
|
|
"markdown-it-anchor": "^5.0.2",
|
|
"prismjs": "^1.15.0",
|
|
"redis": "^2.8.0",
|
|
"slack-node": "^0.1.8",
|
|
"socket.io": "^2.2.0",
|
|
"stringify-object": "^3.3.0"
|
|
},
|
|
"description": "Documentation for the LBRY protocol and associated projects",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.2.3",
|
|
"@babel/core": "^7.2.2",
|
|
"@babel/plugin-external-helpers": "7.2.0",
|
|
"@babel/plugin-proposal-class-properties": "7.2.3",
|
|
"@babel/plugin-proposal-decorators": "7.2.3",
|
|
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
|
|
"@babel/plugin-proposal-function-sent": "7.2.0",
|
|
"@babel/plugin-proposal-json-strings": "7.2.0",
|
|
"@babel/plugin-proposal-numeric-separator": "7.2.0",
|
|
"@babel/plugin-proposal-throw-expressions": "7.2.0",
|
|
"@babel/plugin-syntax-dynamic-import": "7.2.0",
|
|
"@babel/plugin-syntax-import-meta": "7.2.0",
|
|
"@babel/preset-env": "^7.2.3",
|
|
"@babel/register": "^7.0.0",
|
|
"@inc/eslint-config": "^1.1.2",
|
|
"@inc/sasslint-config": "^1.1.2",
|
|
"@lbry/color": "^1.1.0",
|
|
"@lbry/components": "^1.6.3",
|
|
"eslint": "^5.12.0",
|
|
"husky": "^1.3.1",
|
|
"nodemon": "^1.18.9",
|
|
"npm-run-all": "^4.1.5",
|
|
"pino-pretty": "^2.5.0",
|
|
"sass": "^1.15.3",
|
|
"sass-lint": "^1.12.1",
|
|
"snazzy": "^8.0.0",
|
|
"standardx": "^3.0.1",
|
|
"updates": "^6.0.3"
|
|
},
|
|
"engines": {
|
|
"node": "10.2.x"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run format && npm run test:sass && git add -A :/"
|
|
}
|
|
},
|
|
"main": "server.js",
|
|
"name": "lbry.tech",
|
|
"private": true,
|
|
"scripts": {
|
|
"css": "sass --load-path=node_modules --update app/sass:app/dist --style compressed",
|
|
"format": "eslint '**/*.js' --fix --ignore-pattern '/app/dist/'",
|
|
"start": "npm run css && NODE_ENV=production node server",
|
|
"test": "run-s test:*",
|
|
"test:dependencies": "updates --update ./ --exclude fastify,prismjs",
|
|
"test:lint": "standardx --verbose | snazzy",
|
|
"test:sass": "sass-lint --config ./node_modules/@inc/sasslint-config/config.json --verbose --no-exit",
|
|
"watch": "run-p watch:*",
|
|
"watch:sass": "sass --load-path=node_modules --watch app/sass:app/dist --style compressed",
|
|
"watch:server": "NODE_ENV=development nodemon server --ignore 'public/'"
|
|
},
|
|
"standardx": {
|
|
"ignore": [
|
|
"app/dist"
|
|
]
|
|
},
|
|
"version": "3.1.1"
|
|
}
|