Files
devhub/package.json
Bruno Lemos f5c79cbf91 Revert "v0.80.0"
This reverts commit c865c9d183.
2019-05-06 04:20:11 -03:00

62 lines
2.1 KiB
JSON

{
"name": "devhub",
"version": "0.9.0-beta.1",
"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.3.1",
"lint-staged": "8.1.5",
"now": "*",
"patch-package": "6.0.5",
"postinstall-prepare": "1.0.1",
"prettier": "1.16.4",
"shx": "0.3.2",
"tslint": "5.14.0",
"tslint-config-prettier": "1.18.0",
"tslint-react": "3.6.0",
"typescript": "3.3.4000"
},
"husky": {
"hooks": {
"pre-commit": "yarn workspace @devhub/desktop compile && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
}
}