-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
{
"name": "mercy",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"functions",
"web",
"app",
"scripts"
]
},
"scripts": {
"postinstall": "yarn workspace @mercy/app postinstall",
"ci": "yarn workspace @mercy/app ci && yarn workspace @mercy/web ci && yarn workspace @mercy/functions ci && yarn workspace @mercy/scripts ci",
"start": "yarn workspace @mercy/app start",
"xcode": "open app/ios/mercy.xcworkspace",
"studio": "open -a /Applications/Android\\ Studio.app app/android/",
"bootstrap": "yarn install && cd app && bundle install && cd ios && bundle exec pod install --repo-update",
"use": "yarn workspace @mercy/scripts use",
"rename": "yarn workspace @mercy/scripts rename",
"deploy": "firebase deploy"
},
"devDependencies": {
"firebase-tools": "^8.0.2",
"husky": "^4.2.3",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4",
"yarnhook": "^0.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "yarnhook",
"post-merge": "yarnhook",
"post-rewrite": "yarnhook"
}
},
"lint-staged": {
"*.{js,json,md,ts,tsx}": [
"prettier --write"
]
},
"resolutions": {
"@expo/react-native-action-sheet": "3.6.0"
}
}