-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 3.31 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
96
97
98
99
{
"name": "HypePoc",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "expo start",
"test": "APP_VARIANT=test jest --forceExit",
"update:preview": "APP_VARIANT=preview eas update --auto --non-interactive",
"update:production": "APP_VARIANT=production eas update --auto --non-interactive",
"types": "tsc --noEmit",
"lint": "eslint ."
},
"dependencies": {
"@config-plugins/react-native-ble-plx": "^6.0.0",
"@expo/vector-icons": "^13.0.0",
"@morrowdigital/watermelondb-expo-plugin": "^2.1.0",
"@nozbe/watermelondb": "^0.25.5",
"@react-navigation/drawer": "^6.6.1",
"@react-navigation/native": "^6.1.5",
"@react-navigation/stack": "^6.3.16",
"@rnmapbox/maps": "^10.0.2",
"@sentry/react-native": "4.13.0",
"@turf/bbox": "^6.5.0",
"eas-cli": "^3.9.2",
"eventemitter3": "^5.0.0",
"expo": "^48.0.4",
"expo-application": "~5.1.1",
"expo-auth-session": "^4.0.3",
"expo-build-properties": "~0.6.0",
"expo-constants": "~14.2.1",
"expo-dev-client": "~2.2.1",
"expo-device": "~5.2.1",
"expo-file-system": "^15.2.2",
"expo-font": "^11.0.1",
"expo-keep-awake": "^12.0.1",
"expo-location": "^15.1.1",
"expo-random": "^13.1.1",
"expo-secure-store": "^12.1.1",
"expo-status-bar": "^1.4.2",
"expo-updates": "~0.16.4",
"react": "18.2.0",
"react-native": "0.71.6",
"react-native-ble-manager": "^10.0.2",
"react-native-ble-plx": "^2.0.3",
"react-native-flex-grid": "^1.0.0",
"react-native-gesture-handler": "^2.9.0",
"react-native-paper": "^5.2.0",
"react-native-reanimated": "~2.14.4",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "^3.20.0",
"react-native-svg": "13.4.0",
"react-native-vector-icons": "^9.2.0",
"sentry-expo": "~6.1.0",
"styled-components": "^5.3.6",
"tcx-builder": "^1.1.1",
"uri-scheme": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@expo/config-plugins": "~6.0.0",
"@react-native-community/eslint-config": "^3.2.0",
"@tsconfig/react-native": "^2.0.2",
"@types/geojson": "^7946.0.10",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.26",
"@types/styled-components-react-native": "^5.2.1",
"babel-jest": "^29.2.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"better-sqlite3": "^8.2.0",
"eslint": "^8.19.0",
"eslint-plugin-ft-flow": "^2.0.3",
"jest": "^29.5.0",
"jest-expo": "^48.0.2",
"prettier": "^2.4.1",
"react-test-renderer": "18.2.0",
"typescript": "^4.9.4"
},
"jest": {
"preset": "jest-expo/android",
"setupFiles": [
"<rootDir>/setup.ts"
],
"setupFilesAfterEnv": [
"<rootDir>/setupHooks.ts",
"@rnmapbox/maps/setup-jest"
],
"reporters": [
"<rootDir>/reporter.js"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg|@sentry/.*|sentry-expo|@rnmapbox)"
]
}
}