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
80 lines (80 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.48 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
{
"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",
"lint": "expo lint",
"api:check": "node scripts/check-sdk-api.js",
"api:update": "node scripts/check-sdk-api.js --update"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^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": "^16.0.1",
"buffer": "^6.0.3",
"events": "^3.3.0",
"expo": "~54.0.33",
"expo-camera": "~17.0.10",
"expo-clipboard": "~8.0.8",
"expo-constants": "~18.0.13",
"expo-crypto": "~15.0.9",
"expo-linking": "~8.0.12",
"expo-local-authentication": "~16.0.5",
"expo-local-authentication": "~17.0.8",
"expo-router": "~6.0.24",
"expo-secure-store": "~15.0.8",
"expo-status-bar": "~3.0.9",
"lucide-react-native": "^1.16.0",
"pocketpay-sdk": "file:./src/sdk-stub",
"process": "^0.11.10",
"react": "19.1.0",
"react-dom": "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",
"react-native-web": "^0.21.0",
"text-encoding": "^0.7.0",
"zustand": "^5.0.13"
},
"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": "~54.0.10",
"jest": "^29.7.0",
"jest-expo": "~54.0.17",
"react-test-renderer": "19.1.0",
"test-renderer": "^1.2.0",
"typescript": "~5.9.2"
},
"private": true
}