-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.81 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
{
"name": "my-test-app",
"version": "0.1.0",
"buildNumber": "1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"ios:install": "npx pod-install",
"start": "react-native start",
"bundle": "react-native bundle --entry-file index.js --dev true",
"bundle:ios": "yarn bundle --platform ios --bundle-output ios/main.jsbundle",
"bundle:android": "yarn bundle --platform android --bundle-output android/app/src/main/assets/index.android.bundle",
"test": "jest",
"test:watch": "jest --watch",
"e2e:ios:build": "detox build -c ios.sim.release",
"e2e:ios:start": "detox test -c ios.sim.release",
"e2e:android:build": "detox build -c android.emu.release",
"e2e:android:start": "detox test -c android.emu.release",
"lint": "eslint ./src --max-warnings=0",
"lint:fix": "yarn lint --fix",
"check-types": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@react-native-firebase/analytics": "14.5.0",
"@react-native-firebase/app": "14.5.0",
"@react-native-firebase/crashlytics": "14.5.0",
"@react-navigation/bottom-tabs": "6.0.9",
"@react-navigation/native": "6.0.6",
"@react-navigation/native-stack": "6.2.5",
"dayjs": "1.10.7",
"firebase": "9.8.1",
"jetifier": "2.0.0",
"jwt-decode": "3.1.2",
"react": "17.0.2",
"react-native": "0.68.2",
"react-native-app-auth": "6.4.3",
"react-native-dotenv": "3.3.1",
"react-native-keychain": "8.0.0",
"react-native-localize": "2.1.7",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "3.10.2",
"react-native-vector-icons": "9.0.0",
"react-redux": "7.2.6",
"redux": "4.1.2",
"redux-thunk": "2.4.1"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-transform-react-jsx": "7.16.7",
"@babel/runtime": "7.12.5",
"@react-native-community/eslint-config": "2.0.0",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/react-native": "9.0.0",
"@types/jest": "27.4.0",
"@types/react": "17.0.38",
"@types/react-native": "0.66.12",
"@types/react-native-dotenv": "0.2.0",
"@types/react-native-vector-icons": "6.4.10",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-plugin-module-resolver": "4.1.0",
"detox": "19.4.2",
"eslint": "7.14.0",
"husky": "7.0.4",
"jest": "26.6.3",
"jest-circus": "27.4.6",
"lint-staged": "12.2.1",
"metro-cache": "0.66.2",
"metro-minify-terser": "0.66.2",
"metro-react-native-babel-preset": "0.66.2",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"react-test-renderer": "17.0.2",
"typescript": "4.5.4"
}
}