Files
devhub/package.json
2017-05-06 03:46:26 -03:00

110 lines
3.7 KiB
JSON

{
"name": "devhub",
"version": "0.6.0",
"codeBundleId": "0.6.0",
"private": true,
"scripts": {
"flow": "flow '{.,src/**,web/{config,scripts,src}/**,jest/**}/*.js'",
"format": "npm run format_options -- --write '{.,src/**,web/{config,scripts,src}/**,jest/**}/*.js'",
"format_options": "prettier --no-semi --trailing-comma all --single-quote",
"lint": "eslint '{.,src/**,jest/**}/*.js'",
"lint-fix": "npm run lint -- --fix",
"postinstall": "remotedev-debugger --hostname localhost --port 8805 --injectdebugger --injectserver",
"precommit": "lint-staged",
"start": "node node_modules/react-native/local-cli/cli.js start",
"studio": "open -a /Applications/Android\\ Studio.app ./android/",
"test": "jest",
"web": "npm run web:start",
"web:build": "pushd web; npm run build; popd;",
"web:build:serve": "pushd web; npm run serve; popd;",
"web:deploy": "pushd web; npm run deploy; popd;",
"web:start": "pushd web; npm run start; popd;",
"web:test": "pushd web; npm run test; popd;",
"xcode": "open ios/devhub.xcodeproj"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"bugsnag-react-native": "^2.2.0",
"denormalizr": "^0.5.2",
"firebase": "^3.7.5",
"github": "git+https://github.com/brunolemos/react-native-github-api.git",
"gravatar": "^1.6.0",
"immutable": "^3.8.1",
"lodash": "^4.17.3",
"moment": "^2.18.1",
"normalizr": "^3.2.2",
"qs": "^6.4.0",
"react": "16.0.0-alpha.6",
"react-native": "0.43.2",
"react-native-actionsheet": "^2.1.0",
"react-native-code-push": "^2.0.1-beta",
"react-native-immutable-list-view": "^0.4.3",
"react-native-linear-gradient": "^2.0.0",
"react-native-orientation-listener": "git+https://github.com/iRoachie/react-native-orientation-listener.git",
"react-native-prompt-android": "^0.0.5",
"react-native-safari-view": "^2.0.0",
"react-native-vector-icons": "^4.0.1",
"react-native-wkwebview-reborn": "^1.4.0",
"react-navigation": "^1.0.0-beta.8",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-immutable": "^4.0.0",
"redux-persist": "^4.6.0",
"redux-persist-immutable": "^4.1.0",
"redux-saga": "^0.14.6",
"remote-redux-devtools": "^0.5.4",
"reselect": "^3.0.0",
"styled-components": "next",
"warna": "^0.2.4"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-native": "1.9.1",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2 || ^4.0.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-react-native": "^2.3.2",
"flow-bin": "^0.45.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"lint-staged": "^3.4.1",
"prettier": "^1.3.0",
"react-test-renderer": "^15.5.4",
"remote-redux-devtools-on-debugger": "^0.7.0",
"whatwg-fetch": "^2.0.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"web/node_modules"
],
"setupFiles": [
"./jest/setup.js"
],
"testRegex": "<rootDir>/(src/|web/(config|scripts|src)/|jest/|).*\\.test\\.js$",
"transformIgnorePatterns": [
"node_modules/(?!react*)/"
]
},
"lint-staged": {
"*.js": [
"npm run format_options -- --write",
"git add"
]
}
}