-
-
Notifications
You must be signed in to change notification settings - Fork 816
/
package.json
76 lines (76 loc) · 2.73 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
76
{
"name": "devhub",
"version": "0.102.0",
"private": true,
"author": {
"name": "Bruno Lemos",
"email": "[email protected]",
"url": "https://twitter.com/brunolemos"
},
"description": "GitHub Notifications & Activities on your Desktop",
"repository": "https://github.com/devhubapp/devhub",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/devhub"
},
"workspaces": {
"packages": [
"packages/*",
"subdomains/*"
],
"nohoist": []
},
"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": "yarn workspace @devhub/web compile && concurrently --kill-others \"yarn workspace @devhub/web compile -w\" \"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",
"prepare": "yarn patch-package",
"studio": "yarn workspace @devhub/mobile studio",
"xcode": "yarn workspace @devhub/mobile xcode"
},
"dependencies": {
"react-native": "0.64.2"
},
"devDependencies": {
"@primer/octicons-v2": "canary",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"concurrently": "5.3.0",
"cross-env": "7.0.3",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"husky": "4.3.4",
"lint-staged": "10.5.3",
"now": "21.0.1",
"patch-package": "6.2.2",
"postinstall-prepare": "1.0.1",
"prettier": "2.3.1",
"shx": "0.3.3",
"typescript": "4.3.4"
},
"resolutions": {
"@types/react": "17.0.0",
"react-refresh": "0.9.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn workspace @devhub/desktop compile && lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet"
],
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
}
}