-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.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
{
"name": "vaultdeck",
"version": "1.2.7",
"main": "index.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm test -- --coverage && npm audit --omit=dev --audit-level=high",
"test": "jest",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,yml,yaml}": "prettier --write"
},
"dependencies": {
"@expo-google-fonts/space-grotesk": "^0.4.1",
"@react-native-picker/picker": "2.11.1",
"@stablelib/pbkdf2": "^2.0.1",
"@stablelib/sha256": "^2.0.1",
"expo": "~54.0.32",
"expo-blur": "~15.0.8",
"expo-build-properties": "^1.0.10",
"expo-clipboard": "^8.0.8",
"expo-constants": "~18.0.13",
"expo-crypto": "^15.0.8",
"expo-document-picker": "~14.0.8",
"expo-file-system": "^19.0.21",
"expo-font": "~14.0.11",
"expo-haptics": "~15.0.8",
"expo-keep-awake": "~15.0.8",
"expo-linear-gradient": "~15.0.8",
"expo-linking": "~8.0.11",
"expo-local-authentication": "^17.0.8",
"expo-router": "~6.0.22",
"expo-secure-store": "^15.0.8",
"expo-sharing": "~14.0.8",
"expo-status-bar": "~3.0.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-edge-to-edge": "^1.8.1",
"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",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"zustand": "^5.0.10"
},
"private": true,
"jest": {
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/__tests__/setup.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "babel-jest"
},
"collectCoverageFrom": [
"src/crypto/**/*.ts",
"src/storage/**/*.ts",
"src/state/**/*.ts",
"src/utils/**/*.ts",
"!src/utils/useHaptics.ts",
"!src/utils/useTheme.ts",
"!src/components/**"
],
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 100,
"lines": 99,
"statements": 99
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"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)"
]
},
"devDependencies": {
"expo-dev-client": "~6.0.20",
"@eslint/eslintrc": "^3.3.3",
"@types/jest": "^29.5.14",
"@types/react": "~19.1.10",
"babel-jest": "^29.7.0",
"eslint": "^9.39.2",
"eslint-config-expo": "^10.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript": "~5.9.2"
}
}