-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 3.43 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
100
101
102
103
104
105
106
{
"name": "wallet.digitalz.app",
"version": "1.2.0",
"author": "lucasferreiralimax (https://github.com/lucasferreiralimax)",
"repository": "https://github.com/criar-art/wallet.digitalz.app",
"bugs": {
"url": "https://github.com/criar-art/wallet.digitalz.app/issues"
},
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test:unit": "jest",
"ts:check": "tsc"
},
"dependencies": {
"@expo/vector-icons": "^14.0.2",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/datetimepicker": "8.2.0",
"@react-native-firebase/analytics": "^20.4.0",
"@react-native-firebase/app": "^20.4.0",
"@react-native-firebase/crashlytics": "^20.4.0",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/drawer": "^6.7.2",
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.11.0",
"@reduxjs/toolkit": "^2.2.7",
"@shopify/flash-list": "1.7.1",
"crypto-es": "^2.1.0",
"date-fns": "^3.6.0",
"expo": "^52.0.25",
"expo-blur": "~14.0.2",
"expo-device": "~7.0.2",
"expo-linear-gradient": "~14.0.2",
"expo-local-authentication": "~15.0.2",
"expo-localization": "~16.0.1",
"expo-screen-orientation": "~8.0.4",
"expo-status-bar": "~2.0.1",
"expo-updates": "~0.26.12",
"firebase": "^10.13.0",
"i18next": "^23.14.0",
"react": "18.3.1",
"react-i18next": "^15.0.1",
"react-native": "0.76.6",
"react-native-dotenv": "^3.4.11",
"react-native-element-dropdown": "^2.12.1",
"react-native-gesture-handler": "~2.20.2",
"react-native-gifted-charts": "^1.4.30",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-svg": "15.8.0",
"react-native-uuid": "^2.0.2",
"react-number-format": "^5.4.1",
"react-redux": "^9.1.2",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.6.1",
"@tsconfig/react-native": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/react": "~18.3.12",
"babel-plugin-module-resolver": "^5.0.2",
"babel-preset-expo": "~12.0.0",
"jest": "^29.7.0",
"jest-expo": "~52.0.3",
"nativewind": "^2.0.11",
"tailwindcss": "3.3.2",
"ts-jest": "^29.2.5",
"typescript": "~5.3.3"
},
"jest": {
"preset": "jest-expo",
"testEnvironment": "node",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"setupFiles": [
"<rootDir>/jest.setup.ts"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"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|crypto-es|react-native-gifted-charts|gifted-charts-core))"
],
"moduleNameMapper": {
"^@react-native-async-storage/async-storage$": "<rootDir>/__mocks__/@react-native-async-storage/async-storage"
},
"snapshotFormat": {
"printBasicPrototype": false
}
},
"private": true
}