-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "devhub",
"version": "0.96.0",
"private": true,
"author": {
"name": "Bruno Lemos",
"email": "[email protected]",
"url": "https://twitter.com/brunolemos"
},
"description": "GitHub Management Tool",
"repository": "https://github.com/devhubapp/devhub",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/devhub"
},
"workspaces": {
"packages": [
"packages/*",
"subdomains/*"
],
"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: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\"",
"format": "yarn workspaces run format",
"lint": "yarn workspaces run lint",
"patch-package": "patch-package",
"postinstall": "opencollective-postinstall",
"prepare": "yarn patch-package",
"studio": "yarn workspace @devhub/mobile studio",
"xcode": "yarn workspace @devhub/mobile xcode"
},
"dependencies": {
"opencollective-postinstall": "2.0.2"
},
"devDependencies": {
"concurrently": "4.1.0",
"cross-env": "5.2.0",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"now": "16.2.0",
"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.6.2"
},
"resolutions": {
"@types/node": "12.7.2",
"@types/react": "16.9.2",
"scheduler": "0.15.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn workspace @devhub/desktop compile && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
}
}