-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.31 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "tyndale.stepbible",
"version": "3.0.13",
"private": true,
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^10.1.3",
"@types/react": "~18.2.14",
"@types/react-test-renderer": "^16.0.1",
"jest-expo": "^49.0.0",
"metro-minify-terser": "^0.56.3",
"react-native-scripts": "1.14.0",
"react-native-typescript-transformer": "^1.2.11",
"react-test-renderer": "^16.3.1",
"standard-version": "^9.3.2",
"ts-jest": "^22.4.6",
"typescript": "^5.1.3",
"@babel/core": "^7.20.0"
},
"scripts": {
"eas-build-pre-install": "cd .. && yarn install",
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"eject": "expo eject",
"test": "node_modules/.bin/jest",
"build-staging": "EAS_NO_VCS=1 eas build -p=android --non-interactive --profile staging",
"copy-core": "cd ../core && rimraf ./lib && tsc && cp -R lib/* ../app/node_modules/@bible-engine/core/lib/"
},
"jest": {
"preset": "jest-expo",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"globals": {
"ts-jest": {
"tsConfig": {
"jsx": "react"
}
}
}
},
"dependencies": {
"@bible-engine/core": "^1.4.10",
"@expo/metro-config": "^0.10.0",
"@expo/vector-icons": "^13.0.0",
"@gorhom/bottom-sheet": "^4",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/netinfo": "9.3.10",
"@types/react-native-snap-carousel": "^3.8.4",
"babel-preset-expo": "^9.5.0",
"elasticlunr": "^0.9.5",
"expo": "^49.0.0",
"expo-application": "~5.3.0",
"expo-asset": "~8.10.1",
"expo-constants": "~14.4.2",
"expo-device": "~5.4.0",
"expo-file-system": "~15.4.5",
"expo-font": "~11.4.0",
"expo-keep-awake": "~12.3.0",
"expo-sqlite": "~11.3.3",
"expo-system-ui": "~2.4.0",
"hoist-non-react-statics": "^3.3.0",
"mobx": "^5.15.0",
"mobx-react": "5.4.3",
"mobx-sync": "^2.1.2",
"react": "18.2.0",
"react-native": "0.72.10",
"react-native-console-time-polyfill": "^1.2.1",
"react-native-dotenv": "^3.2.0",
"react-native-gesture-handler": "~2.12.0",
"react-native-paper": "^3.4.0",
"react-native-popover-view": "^5.1.8",
"react-native-raw-bottom-sheet": "^2.2.0",
"react-native-reanimated": "~3.3.0",
"react-native-render-html": "^6.3.3",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-simple-store": "^1.3.0",
"react-native-skeleton-placeholder": "^1.0.3",
"react-native-snap-carousel": "^3.9.1",
"react-native-webview": "13.2.2",
"react-navigation": "^4.4.4",
"react-navigation-collapsible": "^5.10.2",
"react-navigation-stack": "^2.10.4",
"sentry-expo": "~7.1.0",
"typeorm": "~0.3.11",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0"
},
"peerDependencies": {
"@bible-engine/core": "0.x"
},
"expo": {
"plugins": [
"sentry-expo"
]
},
"standard-version": {
"skip": {
"tag": true,
"changelog": true
}
}
}