forked from devhubapp/devhub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) 路 1.69 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) 路 1.69 KB
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
{
"name": "devhub",
"version": "0.39.2",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native-firebase"
]
},
"scripts": {
"clean": "yarn workspaces run clean",
"compile": "yarn workspace @devhub/components build",
"deploy": "yarn deploy:web",
"deploy:web": "yarn workspace @devhub/web build && yarn now && yarn now alias",
"deploy:www": "pushd packages/www; now && now alias; popd;",
"dev": "concurrently --kill-others \"yarn compile -w\" \"yarn workspace @devhub/web start\" \"yarn workspace @devhub/mobile start\"",
"dev:web": "concurrently --kill-others \"yarn compile -w\" \"yarn workspace @devhub/web start\"",
"dev:mobile": "concurrently --kill-others \"yarn compile -w\" \"yarn workspace @devhub/mobile start\"",
"format": "yarn workspaces run format",
"lint": "yarn workspaces run lint",
"now": "npx now",
"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",
"husky": "^1.2.0",
"lint-staged-offline": "^0.0.1",
"patch-package": "^5.1.1",
"postinstall-prepare": "^1.0.1",
"prettier": "^1.15.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.1"
},
"resolutions": {
"scheduler": "0.12.0-alpha.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged-offline"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
}
}