-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.05 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "hypergrowth",
"version": "0.0.2",
"private": true,
"scripts": {
"android": "react-native run-android --variant unsigneddebug",
"start": "react-native start",
"start:fresh": "react-native start --reset-cache",
"log:android": "react-native log-android",
"refresh": "adb shell input keyevent 46 46",
"build": "cd android && ./gradlew app:assembleSignedRelease && cd ..",
"bundle": "cd android && ./gradlew app:bundleSignedRelease && cd ..",
"build-detox-android": "detox build -c android.emu.debug",
"test-detox-android": "detox test -c android.emu.debug",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@apollo/client": "^3.3.13",
"@eva-design/eva": "^2.0.0",
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^6.0.0",
"@react-native-community/viewpager": "^5.0.11",
"@react-native-firebase/app": "^11.2.0",
"@react-native-firebase/auth": "^11.2.0",
"@react-native-firebase/crashlytics": "^11.2.0",
"@react-navigation/material-bottom-tabs": "^5.3.15",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.4",
"@ui-kitten/components": "^5.0.0",
"apollo-invalidation-policies": "^1.0.0-beta16",
"color": "^3.1.2",
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "17.0.2",
"react-native": "^0.64.0",
"react-native-appearance": "~0.3.3",
"react-native-gesture-handler": "^1.10.3",
"react-native-localize": "^2.0.2",
"react-native-paper": "^4.7.2",
"react-native-reanimated": "^2.1.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.0.0",
"react-native-svg": "^12.1.0",
"react-native-swipeable-item": "^1.5.4",
"react-native-vector-icons": "^8.1.0",
"react-native-webview": "^11.3.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"styled-components": "^5.2.3"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/runtime": "^7.13.10",
"@react-native-community/eslint-config": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-react-app": "^10.0.0",
"babel-preset-react-native": "^4.0.1",
"detox": "^18.9.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.5.2",
"jest-circus": "^26.5.2",
"metro-react-native-babel-preset": "^0.65.2",
"prettier": "^2.1.2",
"react-native-dotenv": "^0.2.0",
"react-test-renderer": "^17.0.2"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"!node_modules/react-runtime"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}