lbry.tech/package.json

84 lines
2.1 KiB
JSON
Raw Normal View History

{
"name": "lbry.tech",
"description": "Documentation for the LBRY protocol and associated projects",
"author": "LBRY Team",
2018-07-12 17:21:42 +02:00
"version": "0.0.0",
"private": true,
"dependencies": {
2018-07-06 00:33:13 +02:00
"@octokit/rest": "^15.9.4",
2018-07-12 17:21:42 +02:00
"app-root-path": "^2.1.0",
2018-07-06 00:33:13 +02:00
"async": "^2.6.1",
2018-07-12 17:21:42 +02:00
"chalk": "^2.4.1",
2018-07-12 23:07:16 +02:00
"choo": "^6.13.0",
2018-07-12 17:21:42 +02:00
"choo-async": "^0.1.1",
"choo-bundles": "^0.2.4",
"choo-data": "^0.1.1",
"choo-ssr": "^0.2.1",
"choo-websocket": "^2.0.0",
2018-04-23 10:54:03 +02:00
"cors": "^2.8.4",
2018-05-12 12:03:21 +02:00
"cron": "^1.3.0",
2018-07-12 23:07:16 +02:00
"date-format-lite": "^17.7.0",
2018-07-12 17:21:42 +02:00
"decamelize": "^2.0.0",
"dedent": "^0.7.0",
2018-07-06 00:33:13 +02:00
"dotenv": "^6.0.0",
2018-07-12 17:21:42 +02:00
"fastify": "^1.8.0",
"fastify-compress": "^0.6.0",
"fastify-helmet": "^1.0.3",
"fastify-plugin": "^1.2.0",
"fastify-static": "^0.12.0",
"fastify-ws": "^1.0.0",
"front-matter": "^2.3.0",
"fs-exists-sync": "^0.1.0",
2018-07-05 20:50:18 +02:00
"graceful-fs": "^4.1.11",
2018-04-23 10:54:03 +02:00
"heroku-ssl-redirect": "0.0.4",
2018-07-12 17:21:42 +02:00
"make-promises-safe": "^1.1.0",
"markdown-it": "^8.4.1",
2018-07-12 17:21:42 +02:00
"markdown-it-sup": "^1.0.0",
"nanohtml": "^1.2.4",
2018-05-11 22:08:44 +02:00
"redis": "^2.8.0",
2018-07-12 23:07:16 +02:00
"relative-date": "^1.1.3",
2018-07-12 17:21:42 +02:00
"request-promise-native": "^1.0.5",
"slack-node": "^0.2.0",
"socket.io": "^2.1.1",
"ws": "^5.2.2"
2018-06-06 13:02:16 +02:00
},
"devDependencies": {
2018-07-12 17:21:42 +02:00
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"choo-devtools": "^2.5.1",
"nodemon": "^1.18.1",
2018-07-06 00:33:13 +02:00
"npm-run-all": "^4.1.3",
2018-07-12 23:07:16 +02:00
"sass": "^1.9.1",
2018-07-06 00:33:13 +02:00
"snazzy": "^7.1.1",
2018-07-12 17:21:42 +02:00
"standardx": "^2.1.0",
"updates": "^3.2.1"
2018-07-06 00:33:13 +02:00
},
"peerDependencies": {
2018-07-12 17:21:42 +02:00
"request": "^2.87.0"
},
"babel": {
"presets": [
"env",
"stage-2"
]
2018-07-06 00:33:13 +02:00
},
"engines": {
"node": "10.2.x"
},
2018-07-12 17:21:42 +02:00
"standardx": {
"ignore": [
"public"
]
},
2018-07-06 00:33:13 +02:00
"scripts": {
2018-07-12 17:21:42 +02:00
"lint": "standardx --verbose | snazzy",
"start": "NODE_ENV=production node server",
2018-07-06 00:33:13 +02:00
"test": "run-p test:*",
2018-07-12 17:21:42 +02:00
"test:dependencies": "updates -u ./",
2018-07-06 00:33:13 +02:00
"test:lint": "standardx --verbose | snazzy",
2018-07-12 17:21:42 +02:00
"watch": "run-p watch:*",
"watch:sass": "sass --watch sass:public/css --style compressed",
"watch:server": "NODE_ENV=development nodemon index.js --ignore 'public/'"
2018-04-20 15:17:16 +02:00
}
}