-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.5 KB
/
package.json
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
{
"main": "index.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch"
},
"dependencies": {
"@expo/vector-icons": "^12.0.5",
"expo": "~43.0.0",
"expo-status-bar": "~1.1.0",
"jest": "^26.0.0",
"jest-fetch-mock": "^3.0.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.2",
"react-native-dotenv": "^3.2.0",
"react-native-elements": "^3.4.2",
"react-native-safe-area-context": "^3.3.2",
"react-native-web": "0.17.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-native": "^4.0.2",
"@testing-library/react-native": "^8.0.0",
"@types/jest": "^26.0.0",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"@types/react-test-renderer": "^17.0.1",
"jest-expo": "^43.0.1",
"react-test-renderer": "^17.0.2",
"typescript": "~4.3.5"
},
"private": true,
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect",
"./src/setupTests.ts"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
]
}
}