-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.1 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.1 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
{
"scheme": "ca.psiphon.conduit",
"main": "src/entrypoint",
"version": "app.json",
"scripts": {
"android": "npm run get-git-hash && expo run:android",
"ios": "npm run get-git-hash && expo run:ios",
"get-git-hash": "echo \"export const GIT_HASH = '$(git rev-parse --short HEAD)$(git status --porcelain | grep -q . && echo '?')';\" > ./src/git-hash.ts",
"build-release": "npm run get-git-hash && cd android && ./gradlew assembleRelease && cd ..",
"test": "jest --verbose",
"format": "node scripts/convert-to-absolute-imports.js && prettier --write ./src",
"tsc": "tsc --noUnusedLocals --noUnusedParameters",
"check": "jest && prettier --check ./src && tsc --noUnusedLocals --noUnusedParameters",
"dev-server": "expo start"
},
"jest": {
"preset": "jest-expo",
"moduleNameMapper": {
"micro-key-producer/src/slip10": "micro-key-producer/slip10.js"
},
"setupFiles": [
"./src/jestSetup.js"
]
},
"prettier": {
"tabWidth": 4,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"<THIRD_PARTY_MODULES>",
"^@/src/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"importOrderParserPlugins": [
"typescript",
"jsx",
"decorators-legacy"
]
},
"dependencies": {
"@noble/curves": "^1.6.0",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/cli": "^19.1.1",
"@react-navigation/native": "^7.0.14",
"@scure/base": "^1.1.8",
"@scure/bip39": "^1.4.0",
"@shopify/react-native-skia": "~2.4.7",
"@tanstack/react-query": "^5.83.0",
"expo": "^53.0.0",
"expo-clipboard": "~7.1.5",
"expo-constants": "~17.1.7",
"expo-crypto": "~14.1.5",
"expo-font": "~13.3.2",
"expo-haptics": "~14.1.4",
"expo-image": "~2.4.1",
"expo-keep-awake": "~14.1.4",
"expo-linking": "~7.1.7",
"expo-localization": "~16.1.6",
"expo-notifications": "~0.31.4",
"expo-router": "~5.1.4",
"expo-secure-store": "~14.2.3",
"expo-splash-screen": "~0.30.10",
"expo-standard-web-crypto": "2.0.1",
"expo-status-bar": "~2.2.3",
"expo-system-ui": "~5.0.10",
"i18next": "^23.15.1",
"micro-key-producer": "^0.7.0",
"react": "19.0.0",
"react-i18next": "^15.0.2",
"react-native": "0.79.5",
"react-native-edge-to-edge": "1.6.0",
"react-native-gesture-handler": "~2.24.0",
"react-native-keyboard-controller": "^1.18.2",
"react-native-reanimated": "~3.19.0",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/jest": "^29.5.12",
"@types/react": "~19.0.0",
"@types/react-test-renderer": "~19.0.0",
"jest": "^29.2.1",
"jest-expo": "~53.0.6",
"prettier": "^3.3.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"react-test-renderer": "19.0.0",
"typescript": "~5.8.3"
},
"private": true
}