-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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
51
52
53
54
55
56
{
"name": "vividus-test-app",
"version": "0.6.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"build-android": "bundle exec fastlane build_android",
"build-ios": "bundle exec fastlane build_ios"
},
"dependencies": {
"@react-native-community/clipboard": "^1.5.1",
"@react-native-community/datetimepicker": "^6.7.2",
"@react-native-community/slider": "^4.5.5",
"@react-navigation/drawer": "^5.8.6",
"@react-navigation/native": "^6.1.18",
"react": "18.1.0",
"react-native": "0.70.15",
"react-native-elements": "^3.4.3",
"react-native-gesture-handler": "^2.21.2",
"react-native-image-picker": "^7.1.2",
"react-native-reanimated": "^2.2.4",
"react-native-safe-area-context": "^4.14.0",
"react-native-screens": "^3.13.1",
"react-native-snap-carousel": "^4.0.0-beta.6",
"react-native-vector-icons": "^9.2.0",
"react-native-webview": "^11.18.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@react-native-community/eslint-config": "^3.0.1",
"babel-jest": "^29.7.0",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"metro-react-native-babel-preset": "^0.72.4",
"react-native-codegen": "^0.0.15",
"react-test-renderer": "18.1.0"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/__tests__/setup/jest.setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/__tests__/setup"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native(-.*)?|@react-native(-community)?)/)"
]
}
}