Files
devhub/package.json
Bruno Lemos 3565ea8956 v0.47.2
2019-03-06 15:11:59 -03:00

62 lines
2.2 KiB
JSON

{
"name": "devhub",
"version": "0.47.2",
"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.16.4",
"shx": "0.3.2",
"tslint": "^5.13.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"pre-commit": "yarn workspace @devhub/desktop compile && lint-staged-offline"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
}
}