2018-03-23 12:53:54 +01:00
|
|
|
{
|
2019-01-30 00:29:14 +01:00
|
|
|
"_moduleAliases": {
|
2019-04-12 22:17:39 +02:00
|
|
|
"~component": "app/components",
|
|
|
|
"~data": "app/data",
|
|
|
|
"~helper": "app/helpers",
|
|
|
|
"~module": "app/modules",
|
|
|
|
"~root": ".",
|
|
|
|
"~socket": "app/sockets.js",
|
|
|
|
"~view": "app/views"
|
2019-01-30 00:29:14 +01:00
|
|
|
},
|
2018-07-05 22:19:40 +02:00
|
|
|
"author": "LBRY Team",
|
2018-03-23 12:53:54 +01:00
|
|
|
"dependencies": {
|
2019-05-10 00:37:52 +02:00
|
|
|
"@babel/polyfill": "^7.4.4",
|
2018-12-05 18:23:25 +01:00
|
|
|
"@inc/fastify-ws": "^1.1.0",
|
2019-07-08 21:04:25 +02:00
|
|
|
"@octokit/rest": "^16.28.2",
|
2019-05-10 00:37:52 +02:00
|
|
|
"@slack/client": "^5.0.1",
|
2019-07-08 21:04:25 +02:00
|
|
|
"async": "^3.1.0",
|
|
|
|
"async-es": "^3.1.0",
|
2019-04-12 22:17:39 +02:00
|
|
|
"choo": "^6.13.3",
|
2018-07-12 17:21:42 +02:00
|
|
|
"choo-async": "^0.1.1",
|
2019-07-08 21:04:25 +02:00
|
|
|
"choo-devtools": "^3.0.0",
|
2018-07-12 17:21:42 +02:00
|
|
|
"choo-ssr": "^0.2.1",
|
|
|
|
"choo-websocket": "^2.0.0",
|
2019-07-08 21:04:25 +02:00
|
|
|
"colorette": "^1.1.0",
|
2018-11-15 16:50:33 +01:00
|
|
|
"cors": "^2.8.5",
|
2019-05-10 00:37:52 +02:00
|
|
|
"cron": "^1.7.1",
|
2018-07-12 23:07:16 +02:00
|
|
|
"date-format-lite": "^17.7.0",
|
2019-04-12 22:17:39 +02:00
|
|
|
"decamelize": "^3.2.0",
|
2018-07-12 17:21:42 +02:00
|
|
|
"dedent": "^0.7.0",
|
2019-05-10 00:37:52 +02:00
|
|
|
"dotenv": "^8.0.0",
|
2019-07-08 21:04:25 +02:00
|
|
|
"fastify": "~2.6.0",
|
2019-05-14 21:40:35 +02:00
|
|
|
"fastify-compress": "^0.10.0",
|
2019-07-08 21:04:25 +02:00
|
|
|
"fastify-helmet": "^3.0.1",
|
|
|
|
"fastify-static": "^2.5.0",
|
2019-05-10 00:37:52 +02:00
|
|
|
"front-matter": "^3.0.2",
|
2018-07-12 17:21:42 +02:00
|
|
|
"fs-exists-sync": "^0.1.0",
|
2019-01-17 21:41:26 +01:00
|
|
|
"got": "^9.6.0",
|
2019-07-08 21:04:25 +02:00
|
|
|
"graceful-fs": "^4.2.0",
|
2019-04-12 22:17:39 +02:00
|
|
|
"link-module-alias": "^1.2.0",
|
2019-03-27 21:10:29 +01:00
|
|
|
"make-promises-safe": "^5.0.0",
|
2018-07-18 22:31:05 +02:00
|
|
|
"markdown-it": "^8.4.2",
|
2019-06-10 20:57:16 +02:00
|
|
|
"markdown-it-anchor": "^5.2.4",
|
2018-11-21 18:57:58 +01:00
|
|
|
"prismjs": "^1.15.0",
|
2018-05-11 22:08:44 +02:00
|
|
|
"redis": "^2.8.0",
|
2019-01-08 17:54:56 +01:00
|
|
|
"slack-node": "^0.1.8",
|
2018-11-30 21:46:22 +01:00
|
|
|
"socket.io": "^2.2.0",
|
2018-10-31 17:06:30 +01:00
|
|
|
"stringify-object": "^3.3.0"
|
2018-06-06 13:02:16 +02:00
|
|
|
},
|
2018-08-22 00:37:39 +02:00
|
|
|
"description": "Documentation for the LBRY protocol and associated projects",
|
2018-06-06 13:02:16 +02:00
|
|
|
"devDependencies": {
|
2019-07-08 21:04:25 +02:00
|
|
|
"@babel/cli": "^7.5.0",
|
|
|
|
"@babel/core": "^7.5.0",
|
2018-12-03 22:29:06 +01:00
|
|
|
"@babel/plugin-external-helpers": "7.2.0",
|
2019-07-08 21:04:25 +02:00
|
|
|
"@babel/plugin-proposal-class-properties": "7.5.0",
|
2019-05-10 00:37:52 +02:00
|
|
|
"@babel/plugin-proposal-decorators": "7.4.4",
|
2018-12-03 22:29:06 +01:00
|
|
|
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
|
2019-07-08 21:04:25 +02:00
|
|
|
"@babel/plugin-proposal-function-sent": "7.5.0",
|
2018-12-03 22:29:06 +01:00
|
|
|
"@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",
|
2019-07-08 21:04:25 +02:00
|
|
|
"@babel/preset-env": "^7.5.0",
|
2019-05-10 00:37:52 +02:00
|
|
|
"@babel/register": "^7.4.4",
|
2019-02-19 23:41:44 +01:00
|
|
|
"@inc/eslint-config": "^1.1.3",
|
2019-07-08 21:04:25 +02:00
|
|
|
"@inc/sasslint-config": "^2019.6.22",
|
2019-03-20 00:00:15 +01:00
|
|
|
"@lbry/color": "^1.1.1",
|
2019-07-08 21:04:25 +02:00
|
|
|
"@lbry/components": "^2.7.4",
|
|
|
|
"eslint": "^6.0.1",
|
|
|
|
"husky": "^3.0.0",
|
2019-06-10 20:57:16 +02:00
|
|
|
"nodemon": "^1.19.1",
|
2018-11-27 00:04:38 +01:00
|
|
|
"npm-run-all": "^4.1.5",
|
2019-07-08 21:04:25 +02:00
|
|
|
"pino-pretty": "^3.2.0",
|
|
|
|
"sass": "^1.22.3",
|
2019-05-10 00:37:52 +02:00
|
|
|
"sass-lint": "^1.13.1",
|
2018-09-24 18:24:16 +02:00
|
|
|
"snazzy": "^8.0.0",
|
|
|
|
"standardx": "^3.0.1",
|
2019-07-08 21:04:25 +02:00
|
|
|
"updates": "^8.2.1"
|
2018-07-06 00:33:13 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2019-01-28 16:01:03 +01:00
|
|
|
"node": "10.2.x"
|
2018-07-06 00:33:13 +02:00
|
|
|
},
|
2018-09-26 18:42:41 +02:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2018-10-06 16:55:05 +02:00
|
|
|
"pre-commit": "npm run format && npm run test:sass && git add -A :/"
|
2018-09-26 18:42:41 +02:00
|
|
|
}
|
|
|
|
},
|
2018-08-29 01:57:18 +02:00
|
|
|
"main": "server.js",
|
2018-08-22 00:37:39 +02:00
|
|
|
"name": "lbry.tech",
|
2019-01-28 16:05:15 +01:00
|
|
|
"optionalDependencies": {
|
|
|
|
"win-node-env": "^0.4.0"
|
|
|
|
},
|
2018-08-22 00:37:39 +02:00
|
|
|
"private": true,
|
2018-07-06 00:33:13 +02:00
|
|
|
"scripts": {
|
2018-10-15 21:20:55 +02:00
|
|
|
"css": "sass --load-path=node_modules --update app/sass:app/dist --style compressed",
|
2019-01-28 16:01:03 +01:00
|
|
|
"format": "eslint '**/*.js' --fix --ignore-pattern '/app/dist/'",
|
2019-01-30 00:29:14 +01:00
|
|
|
"postinstall": "link-module-alias",
|
2019-02-14 18:07:22 +01:00
|
|
|
"preinstall": "command -v link-module-alias; link-module-alias clean || true",
|
2019-02-20 16:57:05 +01:00
|
|
|
"start": "npm i; npm run css; NODE_ENV=production node index.js",
|
2018-08-29 01:57:18 +02:00
|
|
|
"test": "run-s test:*",
|
2019-03-27 21:10:29 +01:00
|
|
|
"test:dependencies": "updates --update ./ --exclude prismjs",
|
2018-07-06 00:33:13 +02:00
|
|
|
"test:lint": "standardx --verbose | snazzy",
|
2018-10-31 17:06:30 +01:00
|
|
|
"test:sass": "sass-lint --config ./node_modules/@inc/sasslint-config/config.json --verbose --no-exit",
|
2019-02-20 16:57:05 +01:00
|
|
|
"watch": "npm run css; run-p watch:*",
|
2018-10-15 21:20:02 +02:00
|
|
|
"watch:sass": "sass --load-path=node_modules --watch app/sass:app/dist --style compressed",
|
2019-01-17 21:41:26 +01:00
|
|
|
"watch:server": "NODE_ENV=development nodemon --ignore 'app/dist'"
|
2018-08-22 00:37:39 +02:00
|
|
|
},
|
|
|
|
"standardx": {
|
|
|
|
"ignore": [
|
2018-08-29 01:57:18 +02:00
|
|
|
"app/dist"
|
2018-08-22 00:37:39 +02:00
|
|
|
]
|
|
|
|
},
|
2019-07-08 21:04:25 +02:00
|
|
|
"version": "5.3.2"
|
2018-03-23 12:53:54 +01:00
|
|
|
}
|