-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 2.35 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
57
58
59
60
61
62
63
64
65
66
{
"name": "nfit",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.6",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-firebase/app": "^12.4.0",
"@react-native-firebase/firestore": "^12.4.0",
"@react-navigation/bottom-tabs": "^5.11.2",
"@react-navigation/native": "^5.8.10",
"@react-navigation/stack": "^5.12.8",
"@wniemiec-component-reactnative/selectable-button": "^1.0.1",
"@wniemiec-component-reactnative/weekday-selector": "^1.0.3",
"expo": "^42.0.4",
"i18n-js": "^3.8.0",
"react": "17.0.2",
"react-native": "0.68.2",
"react-native-expo-viewport-units": "^0.0.8",
"react-native-gesture-handler": "~1.10.2",
"react-native-get-random-values": "^1.7.0",
"react-native-masked-text": "^1.13.0",
"react-native-reanimated": "^2.8.0",
"react-native-restart": "^0.0.24",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.4.0",
"react-native-svg": "^12.1.1",
"react-native-swipe-list-view": "^3.2.9",
"react-native-viewport-units": "^0.0.5",
"react-native-wheel-color-picker": "^1.1.0",
"react-redux": "^7.2.5",
"redux": "^4.1.1",
"redux-persist": "^6.0.0",
"styled-components": "4.0.0",
"styled-system": "^5.1.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^3.0.1",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "17.0.2"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./jestSetupFile.js",
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"transformIgnorePatterns": [
"/node_modules/(?!(@react-native|react-native|@react-navigation|react-native-swipe-list-view|react-native-expo-viewport-units|react-native-gesture-handler|react-native-reanimated|react-native-wheel-color-picker|@react-native-community/datetimepicker|@react-native-async-storage/async-storage|redux-persist)/).*/"
]
}
}