-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.74 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.74 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
{
"name": "wavespace",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
"start:clear": "expo start --clear",
"start:dev": "expo start --dev-client --clear",
"start:dev:fast": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "npx -y -p typescript@5.5.4 tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run src/integration",
"test:e2e": "bash scripts/qa-e2e-maestro.sh",
"generate:app-icon": "node scripts/generate-app-icon.cjs",
"eas:build:dev:ios": "npx --yes eas-cli build --profile development --platform ios",
"eas:build:dev:ios:sim": "npx --yes eas-cli build --profile development-simulator --platform ios",
"eas:build:dev:android": "npx --yes eas-cli build --profile development --platform android",
"eas:build:preview:ios": "npx --yes eas-cli build --profile preview --platform ios",
"eas:build:preview:android": "npx --yes eas-cli build --profile preview --platform android",
"eas:build:ios": "npx --yes eas-cli build --profile production --platform ios",
"eas:build:android": "npx --yes eas-cli build --profile production --platform android",
"eas:build:all": "npx --yes eas-cli build --profile production --platform all",
"eas:submit:ios": "npx --yes eas-cli submit --profile production --platform ios",
"eas:submit:android": "npx --yes eas-cli submit --profile production --platform android",
"eas:update": "npx --yes eas-cli update",
"postinstall": "patch-package"
},
"dependencies": {
"@breeztech/breez-sdk-spark-react-native": "^0.10.0",
"@expo/vector-icons": "^15.0.2",
"@noble/ciphers": "^2.1.1",
"@noble/hashes": "^1.8.0",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.13.0",
"@react-navigation/native": "^7.1.31",
"@react-navigation/native-stack": "^7.14.5",
"bcryptjs": "^3.0.3",
"bip39": "^3.1.0",
"buffer": "^6.0.3",
"expo": "~55.0.12",
"expo-camera": "~55.0.14",
"expo-clipboard": "~55.0.12",
"expo-constants": "~55.0.12",
"expo-crypto": "~55.0.13",
"expo-dev-client": "~55.0.26",
"expo-document-picker": "~55.0.13",
"expo-file-system": "~55.0.15",
"expo-haptics": "~55.0.4",
"expo-linear-gradient": "~55.0.12",
"expo-local-authentication": "~55.0.12",
"expo-screen-capture": "~55.0.8",
"expo-secure-store": "~55.0.8",
"expo-sharing": "~55.0.17",
"expo-splash-screen": "~55.0.17",
"expo-status-bar": "~55.0.5",
"expo-updates": "~55.0.11",
"react": "19.2.0",
"react-native": "0.83.4",
"react-native-qrcode-svg": "^6.3.21",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-toast-message": "^2.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/bip39": "^2.4.2",
"@types/react": "~19.2.2",
"@vitest/coverage-v8": "^3.2.4",
"babel-plugin-module-resolver": "^5.0.2",
"babel-preset-expo": "~55.0.8",
"jimp": "^1.6.1",
"patch-package": "^8.0.1",
"typescript": "~5.9.2",
"vitest": "^3.2.4"
},
"overrides": {
"@xmldom/xmldom": "0.8.12",
"node-forge": "1.4.0",
"yaml": "2.8.3",
"minimatch@3": {
"brace-expansion": "1.1.14"
},
"minimatch@8": {
"brace-expansion": "2.0.3"
},
"minimatch@9": {
"brace-expansion": "2.0.3"
},
"readdirp@4": {
"picomatch": "4.0.4"
},
"micromatch": {
"picomatch": "4.0.4"
},
"anymatch": {
"picomatch": "2.3.2"
},
"jest-util": {
"picomatch": "2.3.2"
}
},
"private": true
}