{ "name": "devhub", "version": "0.43.0", "private": true, "author": { "name": "Bruno Lemos", "email": "bruno@devhubapp.com", "url": "https://twitter.com/brunolemos" }, "description": "TweetDeck for GitHub", "repository": "https://github.com/devhubapp/devhub", "workspaces": { "packages": [ "packages/*" ], "nohoist": [ "**/react-native-firebase" ] }, "scripts": { "clean": "yarn workspaces run clean", "dev": "yarn workspace @devhub/desktop compile && concurrently --kill-others \"yarn workspace @devhub/desktop compile -w\" \"yarn workspace @devhub/web start\" \"yarn workspace @devhub/mobile start\" \"wait-on http://localhost:3000 && yarn workspace @devhub/desktop start\"", "dev:desktop": "cross-env BROWSER=none concurrently \"yarn dev:web\" \"yarn workspace @devhub/desktop compile -w\" \"wait-on http://localhost:3000 && yarn workspace @devhub/desktop start\"", "dev:mobile": "yarn workspace @devhub/mobile compile && concurrently --kill-others \"yarn workspace @devhub/mobile compile -w\" \"yarn workspace @devhub/mobile start\"", "dev:web": "yarn workspace @devhub/web compile && concurrently --kill-others \"yarn workspace @devhub/web compile -w\" \"yarn workspace @devhub/web start\"", "format": "yarn workspaces run format", "lint": "yarn workspaces run lint", "patch-package": "patch-package", "prepare": "yarn patch-package", "studio": "yarn workspace @devhub/mobile studio", "xcode": "yarn workspace @devhub/mobile xcode" }, "dependencies": {}, "devDependencies": { "concurrently": "^4.1.0", "cross-env": "^5.2.0", "husky": "^1.2.0", "lint-staged-offline": "^0.0.1", "now": "*", "patch-package": "^5.1.1", "postinstall-prepare": "^1.0.1", "prettier": "^1.15.3", "shx": "0.3.2", "tslint": "^5.11.0", "tslint-config-prettier": "^1.17.0", "tslint-react": "^3.6.0", "typescript": "^3.2.2" }, "resolutions": { "scheduler": "0.12.0" }, "husky": { "hooks": { "pre-commit": "lint-staged-offline" } }, "lint-staged": { "*.{ts,tsx}": [ "tslint --fix", "prettier --write", "git add" ] } }