-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
153 lines (153 loc) · 7.95 KB
/
package.json
File metadata and controls
153 lines (153 loc) · 7.95 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "pearpass-app-mobile",
"version": "2.0.0",
"main": "index.js",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"start": "expo start --dev-client",
"build": "npm run bundle-bare && npm run lingui:extract && npm run lingui:compile",
"android": "expo run:android",
"android:fdroid": "PEARPASS_DISTRIBUTION=fdroid expo run:android --variant fdroidDebug",
"ios": "expo run:ios",
"lint:fix": "eslint --fix ./src",
"lint": "eslint ./src",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"postinstall": "patch-package && node scripts/build-plugins.cjs && npm run barekit:link-ios-addons",
"build-plugins": "node scripts/build-plugins.cjs",
"barekit:link-ios-addons": "node node_modules/react-native-bare-kit/ios/link.mjs",
"pods:install": "cd ios && pod install",
"test": "jest",
"bundle:android": "bare-pack -p android --linked --defer sentry-bare --out bundles/app-android.bundle.js node_modules/@tetherto/pearpass-lib-vault-core/src/worklet/app.js",
"bundle:ios": "bare-pack -p ios --linked --defer sentry-bare --out bundles/app-ios.bundle.js node_modules/@tetherto/pearpass-lib-vault-core/src/worklet/app.js",
"bundle:autofill": "bare-pack --target ios --target android --linked --defer sentry-bare --out bundles/autofill.bundle node_modules/@tetherto/pearpass-lib-vault-core/src/worklet/app-ipc.js",
"bundle-bare": "npm run bundle:android && npm run bundle:ios && npm run bundle:autofill",
"bundle:android:nightly": "bare-pack -p android --linked --out bundles/app-android.bundle.js node_modules/@tetherto/pearpass-lib-vault-core/src/worklet/app.js",
"bundle:ios:nightly": "bare-pack -p ios --linked --out bundles/app-ios.bundle.js node_modules/@tetherto/pearpass-lib-vault-core/src/worklet/app.js",
"bundle:autofill:nightly": "bare-pack --target ios --target android --linked --out bundles/autofill.bundle node_modules/@tetherto/pearpass-lib-vault-core/src/worklet/app-ipc.js",
"bundle-bare:nightly": "npm run bundle:android:nightly && npm run bundle:ios:nightly && npm run bundle:autofill:nightly",
"lingui:extract": "lingui extract",
"lingui:compile": "lingui compile",
"fdroid:patches": "node scripts/fdroid/apply-patches.mjs all",
"fdroid:patches:prebuild": "node scripts/fdroid/apply-patches.mjs prebuild",
"fdroid:patches:build": "node scripts/fdroid/apply-patches.mjs build",
"eas-build-pre-install": "node -v && npm -v && npm install --package-lock-only --ignore-scripts --no-audit --no-fund",
"eas-build-post-install": "npx patch-package && npm run build-plugins && npm run barekit:link-ios-addons && npm run bundle-bare && npm run lingui:extract && npm run lingui:compile"
},
"dependencies": {
"@expo/metro-runtime": "~5.0.4",
"@gorhom/bottom-sheet": "5",
"@lingui/core": "5.3.3",
"@lingui/macro": "5.3.3",
"@lingui/react": "5.3.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/datetimepicker": "^9.1.0",
"@react-native-community/netinfo": "^12.0.1",
"@react-native-community/slider": "5.1.1",
"@react-navigation/bottom-tabs": "7.2.0",
"@react-navigation/drawer": "7.1.1",
"@react-navigation/native": "7.0.14",
"@react-navigation/native-stack": "7.2.0",
"@sentry/react-native": "8.9.2",
"@tetherto/pear-apps-lib-feedback": "git+https://github.com/tetherto/pear-apps-lib-feedback.git",
"@tetherto/pear-apps-lib-ui-react-hooks": "git+https://github.com/tetherto/pear-apps-lib-ui-react-hooks.git",
"@tetherto/pear-apps-utils-avatar-initials": "git+https://github.com/tetherto/pear-apps-utils-avatar-initials.git",
"@tetherto/pear-apps-utils-date": "git+https://github.com/tetherto/pear-apps-utils-date.git",
"@tetherto/pear-apps-utils-generate-unique-id": "git+https://github.com/tetherto/pear-apps-utils-generate-unique-id.git",
"@tetherto/pear-apps-utils-pattern-search": "git+https://github.com/tetherto/pear-apps-utils-pattern-search.git",
"@tetherto/pear-apps-utils-qr": "git+https://github.com/tetherto/pear-apps-utils-qr.git",
"@tetherto/pear-apps-utils-validator": "git+https://github.com/tetherto/pear-apps-utils-validator.git",
"@tetherto/pearpass-lib-constants": "git+https://github.com/tetherto/pearpass-lib-constants.git",
"@tetherto/pearpass-lib-data-export": "git+https://github.com/tetherto/pearpass-lib-data-export.git",
"@tetherto/pearpass-lib-data-import": "git+https://github.com/tetherto/pearpass-lib-data-import.git",
"@tetherto/pearpass-lib-ui-kit": "git+https://github.com/tetherto/pearpass-lib-ui-react-native-components.git#design-system-v2",
"@tetherto/pearpass-lib-ui-react-native-components": "git+https://github.com/tetherto/pearpass-lib-ui-react-native-components.git",
"@tetherto/pearpass-lib-ui-theme-provider": "git+https://github.com/tetherto/pearpass-lib-ui-theme-provider.git",
"@tetherto/pearpass-lib-vault": "git+https://github.com/tetherto/pearpass-lib-vault.git",
"@tetherto/pearpass-lib-vault-core": "git+https://github.com/tetherto/pearpass-lib-vault-core.git",
"@tetherto/pearpass-utils-password-check": "git+https://github.com/tetherto/pearpass-utils-password-check.git",
"@tetherto/pearpass-utils-password-generator": "git+https://github.com/tetherto/pearpass-utils-password-generator.git",
"bare-pack": "1.4.1",
"buffer": "6.0.3",
"expo": "~53.0.17",
"expo-asset": "~11.1.7",
"expo-av": "~15.1.7",
"expo-blur": "~14.1.5",
"expo-build-properties": "~0.14.8",
"expo-clipboard": "~7.1.5",
"expo-crypto": "~13.0.0",
"expo-document-picker": "~13.1.6",
"expo-file-system": "~18.1.11",
"expo-font": "~13.3.2",
"expo-haptics": "~14.1.4",
"expo-image-picker": "~16.1.4",
"expo-linking": "~7.1.7",
"expo-local-authentication": "~16.0.5",
"expo-navigation-bar": "~4.2.8",
"expo-secure-store": "~14.2.3",
"expo-sharing": "~13.1.5",
"expo-status-bar": "~2.2.3",
"expo-transparent-video": "^0.3.4",
"expo-video": "~2.2.2",
"jszip": "3.10.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.5",
"react-native-bare-kit": "0.13.0",
"react-native-config": "1.5.6",
"react-native-gesture-handler": "~2.24.0",
"react-native-markdown-display": "7.0.2",
"react-native-qrcode-svg": "6.3.15",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"react-native-svg-transformer": "1.5.1",
"react-native-toast-message": "2.3.3",
"react-native-vector-icons": "10.2.0",
"react-native-vision-camera": "^4.7.3",
"react-native-worklets-core": "^1.6.3",
"react-strict-dom": "^0.0.55",
"rive-react-native": "9.3.4",
"sodium-native": "5.0.9",
"styled-components": "6.1.19",
"vision-camera-zxing": "^0.1.1"
},
"devDependencies": {
"@babel/core": "7.28.0",
"@babel/preset-env": "7.28.0",
"@lingui/babel-plugin-lingui-macro": "5.3.3",
"@lingui/cli": "5.3.3",
"@lingui/format-json": "5.3.3",
"@react-native-community/cli": "latest",
"@react-native/babel-preset": "0.79.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/react-native": "13.2.0",
"@tetherto/tether-dev-docs": "git+https://github.com/tetherto/tether-dev-docs.git",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.4",
"babel-jest": "29.7.0",
"babel-plugin-macros": "3.1.0",
"eslint": "^9.39.3",
"eslint-config-expo": "10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-eslint-plugin": "^6.5.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "^30.2.0",
"patch-package": "^8.0.1",
"prettier": "^3.8.1",
"react-test-renderer": "19.0.0",
"typescript": "~5.8.3"
},
"overrides": {
"react": "$react",
"react-dom": "$react-dom"
},
"private": true
}