lbry-desktop/package.json

122 lines
3.6 KiB
JSON
Raw Normal View History

2017-01-16 20:06:53 +01:00
{
"name": "LBRY",
2018-01-25 19:39:01 +01:00
"version": "0.20.0rc2",
"description": "A browser for the LBRY network, a digital marketplace controlled by its users.",
2017-12-12 12:46:08 +01:00
"homepage": "https://lbry.io/",
"bugs": {
"url": "https://github.com/lbryio/lbry-app/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lbryio/lbry-app"
},
"author": {
"name": "LBRY Inc.",
"email": "hello@lbry.io"
},
2017-12-20 15:48:38 +01:00
"main": "src/main/index.js",
"scripts": {
2017-12-20 15:48:38 +01:00
"extract-langs": "node build/extractLocals.js",
"dev": "electron-webpack dev",
2017-12-07 14:19:44 +01:00
"compile": "electron-webpack && yarn extract-langs",
2017-12-20 15:48:38 +01:00
"build": "yarn compile && electron-builder build",
"build:dir": "yarn build -- --dir -c.compression=store -c.mac.identity=null",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint 'src/**/*.{js,jsx}' --fix",
"format": "prettier 'src/**/*.{js,jsx,scss,json}' --write"
},
"keywords": [
"lbry"
],
"dependencies": {
2017-12-07 21:03:12 +01:00
"amplitude-js": "^4.0.0",
"bluebird": "^3.5.1",
2017-12-07 21:03:12 +01:00
"classnames": "^2.2.5",
"country-data": "^0.0.31",
"electron-dl": "^1.6.0",
"electron-log": "^2.2.12",
"electron-publisher-s3": "^19.47.0",
"electron-updater": "^2.16.1",
2017-12-07 21:03:12 +01:00
"formik": "^0.10.4",
2017-12-04 20:02:29 +01:00
"from2": "^2.3.0",
2017-12-10 15:38:19 +01:00
"install": "^0.10.2",
"jayson": "^2.0.2",
"jshashes": "^1.0.7",
"keytar-prebuild": "^4.0.4",
"localforage": "^1.5.0",
2018-01-14 10:14:15 +01:00
"moment": "^2.20.1",
2017-12-04 20:30:56 +01:00
"npm": "^5.5.1",
2017-12-07 21:03:12 +01:00
"qrcode.react": "^0.7.2",
"rc-progress": "^2.0.6",
2017-12-10 15:38:19 +01:00
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-markdown": "^2.5.0",
2017-12-10 15:38:19 +01:00
"react-modal": "^3.1.7",
"react-paginate": "^5.0.0",
"react-redux": "^5.0.3",
"react-simplemde-editor": "^3.6.11",
"redux": "^3.6.0",
"redux-action-buffer": "^1.1.0",
"redux-logger": "^3.0.1",
"redux-persist": "^4.8.0",
"redux-persist-transform-compress": "^4.2.0",
"redux-persist-transform-filter": "0.0.10",
"redux-thunk": "^2.2.0",
"render-media": "^2.10.0",
"reselect": "^3.0.0",
2017-12-04 20:02:29 +01:00
"semver": "^5.3.0",
2017-12-07 21:03:12 +01:00
"shapeshift.io": "^1.3.1",
2017-12-04 20:02:29 +01:00
"source-map-support": "^0.5.0",
"tree-kill": "^1.1.0",
2017-12-10 15:38:19 +01:00
"y18n": "^4.0.0"
},
2017-01-27 00:21:06 +01:00
"devDependencies": {
2017-12-20 15:48:38 +01:00
"babel-eslint": "^8.0.3",
2017-12-04 21:54:40 +01:00
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-react-require": "^3.0.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.18.0",
2017-12-04 20:02:29 +01:00
"devtron": "^1.4.0",
2018-01-24 04:28:37 +01:00
"electron": "^1.7.11",
2017-12-20 15:48:38 +01:00
"electron-builder": "^19.49.0",
2017-12-04 20:02:29 +01:00
"electron-devtools-installer": "^2.2.1",
"electron-webpack": "^1.11.0",
2017-12-20 15:48:38 +01:00
"eslint": "^4.13.1",
2017-12-13 22:35:07 +01:00
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.4.0",
2017-12-13 22:35:07 +01:00
"eslint-plugin-react": "^7.5.1",
2017-12-07 21:03:12 +01:00
"flow-babel-webpack-plugin": "^1.1.0",
2017-12-10 15:38:19 +01:00
"flow-bin": "^0.61.0",
2017-12-07 21:03:12 +01:00
"flow-typed": "^2.2.3",
2017-12-10 15:38:19 +01:00
"husky": "^0.14.3",
"i18n-extract": "^0.5.1",
"json-loader": "^0.5.4",
2017-12-10 15:38:19 +01:00
"lint-staged": "^6.0.0",
"node-loader": "^0.6.0",
2017-12-04 23:03:08 +01:00
"node-sass": "^4.7.2",
"prettier": "^1.4.2",
"sass-loader": "^6.0.6",
2017-12-04 20:30:56 +01:00
"webpack": "^3.10.0",
"webpack-build-notifier": "^0.1.18"
},
"resolutions": {
"webpack/webpack-sources": "1.0.1"
},
2017-12-12 12:38:20 +01:00
"engines": {
"node": ">=6",
"yarn": "^1.3"
},
"license": "MIT",
"lbrySettings": {
2018-01-24 21:42:20 +01:00
"lbrynetDaemonVersion": "0.18.2",
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip"
}
2017-01-16 20:06:53 +01:00
}