forked from Axionvera/pocketpay-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.62 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
{
"name": "stellar-pocketpay-mobile",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest --watchAll=false",
"test:watch": "jest",
"typecheck": "tsc --noEmit"
},
"jest": {
"preset": "jest-expo",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"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|lucide-react-native)"
],
"moduleNameMapper": {
"^expo-router$": "<rootDir>/__mocks__/expo-router.ts",
"^expo-secure-store$": "<rootDir>/__mocks__/expo-secure-store.ts",
"^pocketpay-sdk$": "<rootDir>/__mocks__/pocketpay-sdk.ts",
"^@stellar/stellar-sdk$": "<rootDir>/__mocks__/@stellar/stellar-sdk.ts"
}
},
"dependencies": {
"@react-native-async-storage/async-storage": "2.2.0",
"@stellar/stellar-sdk": "^12.2.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"expo": "~54.0.33",
"expo-camera": "^57.0.3",
"expo-clipboard": "^55.0.13",
"expo-constants": "~18.0.13",
"expo-crypto": "~15.0.9",
"expo-linking": "~8.0.12",
"expo-router": "~6.0.24",
"expo-secure-store": "~15.0.8",
"expo-status-bar": "~3.0.9",
"install": "^0.13.0",
"lucide-react-native": "^1.16.0",
"npx": "^10.2.2",
"process": "^0.11.10",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-get-random-values": "~1.11.0",
"react-native-qrcode-svg": "^6.3.21",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"text-encoding": "^0.7.0",
"zustand": "^5.0.13",
"expo-local-authentication": "~16.0.5"
},
"devDependencies": {
"@react-native/jest-preset": "^0.86.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/react": "~19.1.0",
"@types/react-test-renderer": "^19.1.0",
"babel-jest": "^29.7.0",
"babel-preset-expo": "^57.0.3",
"jest": "^29.7.0",
"jest-expo": "^57.0.2",
"react-test-renderer": "19.1.0",
"test-renderer": "^1.2.0",
"typescript": "~5.9.2"
},
"private": true
}