lbry-desktop/ui/package.json

76 lines
2 KiB
JSON
Raw Normal View History

{
"name": "lbry-web-ui",
2017-06-09 20:31:39 +02:00
"version": "0.12.0",
2017-03-13 19:12:56 +01:00
"description": "LBRY UI",
"scripts": {
2017-04-25 07:47:12 +02:00
"test": "echo \"Error: no test specified\" && exit 1",
2017-06-06 06:20:41 +02:00
"dev": "webpack-dev-server --devtool eval --progress --colors --inline",
2017-06-06 18:24:55 +02:00
"precommit": "lint-staged",
2017-06-06 23:19:12 +02:00
"prettier": "prettier --trailing-comma es5 --write js/**/*.{js,jsx}"
},
"keywords": [
"lbry"
],
2017-03-13 19:12:56 +01:00
"author": {
"name": "LBRY Inc.",
"email": "hello@lbry.io"
},
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
2017-03-09 18:31:07 +01:00
"url": "https://github.com/lbryio/lbry-app/issues"
},
2017-03-09 18:31:07 +01:00
"homepage": "https://github.com/lbryio/lbry-app#readme",
"dependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
2017-05-25 19:40:46 +02:00
"from2": "^2.3.0",
"jshashes": "^1.0.6",
"node-sass": "^3.8.0",
"rc-progress": "^2.0.6",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-modal": "^1.5.2",
2017-04-07 07:15:22 +02:00
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.0",
2017-05-25 19:40:46 +02:00
"render-media": "^2.10.0",
2017-06-03 13:08:45 +02:00
"reselect": "^3.0.0",
"y18n": "^3.2.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
2017-06-10 07:03:02 +02:00
"babel-loader": "^6.4.1",
"babel-plugin-react-require": "^3.0.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
2017-06-06 06:20:41 +02:00
"husky": "^0.13.4",
"json-loader": "^0.5.4",
2017-06-06 06:20:41 +02:00
"lint-staged": "^3.6.0",
"node-sass": "^3.13.0",
2017-06-06 06:20:41 +02:00
"prettier": "^1.4.2",
2017-06-10 07:03:02 +02:00
"webpack": "^2.6.1",
2017-04-25 07:47:12 +02:00
"webpack-dev-server": "^2.4.4",
2017-05-05 06:28:30 +02:00
"webpack-notifier": "^1.5.0",
2017-06-09 07:22:45 +02:00
"webpack-target-electron-renderer": "^0.4.0",
"why-did-you-update": "0.0.8"
2017-06-06 06:20:41 +02:00
},
"lint-staged": {
"gitDir": "../",
2017-06-06 23:23:58 +02:00
"ui/js/**/*.{jsx,js}": [
2017-06-06 23:19:12 +02:00
"prettier --trailing-comma es5 --write",
2017-06-06 06:20:41 +02:00
"git add"
]
}
}