SIGN IN SIGN UP
devhubapp / devhub UNCLAIMED

TweetDeck for GitHub - Filter Issues, Activities & Notifications - Web, Mobile & Desktop with 99% code sharing between them

0 0 30 TypeScript
2017-11-08 21:55:06 -02:00
{
2018-11-06 15:22:57 -02:00
"name": "devhub",
2020-02-06 21:06:59 -03:00
"version": "0.100.2",
2018-11-05 19:40:57 -02:00
"private": true,
"author": {
"name": "Bruno Lemos",
"email": "bruno@devhubapp.com",
"url": "https://twitter.com/brunolemos"
},
2019-12-18 16:54:06 -03:00
"description": "Unified view for GitHub activities",
"repository": "https://github.com/devhubapp/devhub",
2019-05-26 16:24:10 -03:00
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/devhub"
},
2018-11-05 19:40:57 -02:00
"workspaces": {
"packages": [
"packages/*",
"subdomains/*"
2018-11-05 19:40:57 -02:00
],
"nohoist": []
2017-11-09 02:57:44 -02:00
},
2018-11-05 19:40:57 -02:00
"scripts": {
2018-11-20 19:54:08 -02:00
"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": "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\"",
2018-11-05 19:40:57 -02:00
"format": "yarn workspaces run format",
"lint": "yarn workspaces run lint",
2018-12-11 08:07:16 -02:00
"patch-package": "patch-package",
"postinstall": "jetifier",
2018-11-20 05:29:10 -02:00
"prepare": "yarn patch-package",
2018-12-03 18:53:39 -02:00
"studio": "yarn workspace @devhub/mobile studio",
"xcode": "yarn workspace @devhub/mobile xcode"
2017-11-09 02:57:44 -02:00
},
2019-05-26 16:24:10 -03:00
"dependencies": {
"react-native": "0.61.5"
2019-05-26 16:24:10 -03:00
},
2017-11-09 02:57:44 -02:00
"devDependencies": {
2019-03-20 20:22:34 -03:00
"concurrently": "4.1.0",
"cross-env": "5.2.0",
"husky": "1.3.1",
"jetifier": "1.6.4",
2019-03-20 20:22:34 -03:00
"lint-staged": "8.1.5",
"now": "16.7.1",
2019-03-20 20:22:34 -03:00
"patch-package": "6.0.5",
"postinstall-prepare": "1.0.1",
"prettier": "1.16.4",
"shx": "0.3.2",
2019-11-06 20:23:09 -03:00
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.1.0",
2020-01-30 00:37:16 -03:00
"typescript": "3.7.5"
2019-08-16 19:23:48 -03:00
},
"resolutions": {
"@types/react": "16.9.15"
},
2018-11-15 05:56:05 -02:00
"husky": {
"hooks": {
"pre-commit": "yarn workspace @devhub/desktop compile && lint-staged"
2018-11-15 05:56:05 -02:00
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
2017-11-09 02:57:44 -02:00
}
}