-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 922 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 922 Bytes
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
{
"scripts": {
"test": "jest --runInBand",
"test:ci": "jest --runInBand --ci --coverage",
"typecheck": "tsc --noEmit"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"moduleNameMapper": {
"^react-native-keychain$": "<rootDir>/src/__mocks__/react-native-keychain.ts",
"^expo-constants$": "<rootDir>/src/__mocks__/expo-constants.ts"
},
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/__tests__/**",
"!src/**/__mocks__/**"
]
},
"dependencies": {
"axios": "^1.13.5",
"crypto-js": "^4.2.0",
"expo-constants": "^18.0.13",
"react-native-keychain": "^10.0.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}