{ "name": "devhub", "version": "0.102.0", "private": true, "author": { "name": "Bruno Lemos", "email": "bruno@devhubapp.com", "url": "https://twitter.com/brunolemos" }, "description": "GitHub Notifications & Activities on your Desktop", "repository": "https://github.com/devhubapp/devhub", "collective": { "type": "opencollective", "url": "https://opencollective.com/devhub" }, "workspaces": { "packages": [ "packages/*", "subdomains/*" ], "nohoist": [] }, "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:landing": "yarn workspace @devhub/web compile && concurrently --kill-others \"yarn workspace @devhub/web compile -w\" \"cd ./landing && yarn start && cd -\"", "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": { "react-native": "0.64.2" }, "devDependencies": { "@primer/octicons-v2": "canary", "@typescript-eslint/eslint-plugin": "4.28.0", "@typescript-eslint/parser": "4.28.0", "concurrently": "5.3.0", "cross-env": "7.0.3", "eslint": "7.29.0", "eslint-config-prettier": "8.3.0", "eslint-plugin-prettier": "3.4.0", "eslint-plugin-react": "7.24.0", "husky": "4.3.4", "lint-staged": "10.5.3", "now": "21.0.1", "patch-package": "6.2.2", "postinstall-prepare": "1.0.1", "prettier": "2.3.1", "shx": "0.3.3", "typescript": "4.3.4" }, "resolutions": { "@types/react": "17.0.0", "react-refresh": "0.9.0" }, "husky": { "hooks": { "pre-commit": "yarn workspace @devhub/desktop compile && lint-staged" } }, "lint-staged": { "*.{js,jsx,ts,tsx}": [ "eslint --fix --quiet" ], "*.{js,jsx,ts,tsx,json}": [ "prettier --write" ] } }