-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·72 lines (72 loc) · 2.3 KB
/
package.json
File metadata and controls
executable file
·72 lines (72 loc) · 2.3 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"apitest": "mocha -r ts-node/register tests/backend/*.spec.ts",
"ts-node": "ts-node",
"testWithTranspile": "mocha -r ts-node/register/transpile-only.js src/**/*.spec.ts",
"mock-server": "ts-node ./mock-server/mockServer.ts --watch"
},
"dependencies": {
"@react-native-community/masked-view": "0.1.5",
"@react-navigation/bottom-tabs": "^5.1.1",
"@react-navigation/drawer": "^5.4.0",
"@react-navigation/native": "^5.0.8",
"@react-navigation/stack": "^5.1.0",
"@types/i18n-js": "^3.0.1",
"@types/node": "^13.9.0",
"@types/react-native-dotenv": "^0.2.0",
"@types/react-redux": "^7.1.7",
"@types/yup": "^0.26.33",
"axios": "^0.19.2",
"expo": "~36.0.0",
"expo-font": "^8.0.0",
"expo-localization": "~8.0.0",
"formik": "^2.1.4",
"i18n-js": "^3.5.1",
"immer": "^6.0.1",
"moment": "^2.24.0",
"native-base": "2.13.8",
"query-string": "^6.11.1",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz",
"react-native-dotenv": "^0.2.0",
"react-native-gesture-handler": "~1.5.0",
"react-native-maps": "^0.26.1",
"react-native-progress": "^4.0.3",
"react-native-reanimated": "~1.4.0",
"react-native-safe-area-context": "0.6.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-web": "~0.11.7",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"typesafe-actions": "^5.1.0",
"weak-key": "^1.0.2",
"yup": "^0.28.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.4",
"@types/mocha": "^7.0.2",
"@types/react": "~16.9.0",
"@types/react-native": "~0.60.23",
"@types/redux-mock-store": "^1.0.2",
"babel-preset-expo": "~8.0.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mocha": "^7.1.0",
"redux-mock-store": "^1.5.4",
"ts-node": "^8.6.2",
"typescript": "~3.7.0"
},
"private": true
}