-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "myprojectname",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"postinstall": "patch-package",
"android": "yarn workspace mobile android",
"compile": "tsc -b --incremental",
"ios": "yarn workspace mobile ios",
"studio": "yarn workspace mobile studio",
"xcode": "yarn workspace mobile xcode"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.5",
"@react-navigation/bottom-tabs": "^5.0.0-alpha.22",
"@react-navigation/core": "^5.0.0-alpha.25",
"@react-navigation/native": "^5.0.0-alpha.14",
"@react-navigation/stack": "^5.0.0-alpha.37",
"react-native": "0.61.3",
"react-native-gesture-handler": "^1.5.2",
"react-native-reanimated": "^1.4.0",
"react-native-safe-area-context": "^0.6.1",
"react-native-screens": "^2.0.0-alpha.22",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@types/react": "16.9.11",
"@types/react-native": "0.60.22",
"@types/react-router-dom": "^5.1.3",
"concurrently": "5.0.0",
"patch-package": "^6.2.0",
"typescript": "3.6.4"
}
}