{ "name": "devhub", "version": "0.27.0", "private": true, "workspaces": { "packages": [ "packages/*" ], "nohoist": [] }, "scripts": { "build": "yarn workspace shared-core build && yarn workspace shared-components build && yarn workspace web build", "clean": "yarn workspaces run clean", "deploy": "yarn clean && yarn build && yarn now", "dev": "yarn workspace shared-core build && yarn workspace shared-components build && concurrently --kill-others \"yarn workspace shared-core build -w\" \"yarn workspace shared-components build -w\" \"yarn workspace web start\" \"yarn workspace mobile start\"", "format": "yarn workspaces run format", "lint": "yarn workspaces run lint", "now": "npx now", "patch-package": "if test \"$NOW\" = \"1\"; then cd .; else patch-package; fi", "prepare": "yarn patch-package", "studio": "yarn workspace mobile studio", "xcode": "yarn workspace mobile xcode" }, "dependencies": {}, "devDependencies": { "concurrently": "^4.0.1", "husky": "^1.1.4", "lint-staged-offline": "^0.0.1", "patch-package": "^5.1.1", "postinstall-prepare": "^1.0.1", "prettier": "^1.15.2", "tslint": "^5.11.0", "tslint-config-prettier": "^1.16.0", "tslint-react": "^3.6.0", "typescript": "^3.1.6" }, "husky": { "hooks": { "pre-commit": "lint-staged-offline" } }, "lint-staged": { "*.{ts,tsx}": [ "tslint --fix", "prettier --write", "git add" ] } }