-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.7 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
107
108
109
{
"name": "ccmobile",
"version": "1.0.0",
"private": true,
"scripts": {
"prestart": "sb-rn-get-stories",
"storybook-watcher": "sb-rn-watcher",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start —reset-cash",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prepare": "husky install"
},
"dependencies": {
"@react-native-picker/picker": "^2.4.8",
"@react-navigation/bottom-tabs": "^6.5.2",
"@react-navigation/material-bottom-tabs": "^6.2.11",
"@react-navigation/material-top-tabs": "^6.6.0",
"@react-navigation/native": "^6.1.1",
"@react-navigation/native-stack": "^6.9.6",
"@reduxjs/toolkit": "^1.9.1",
"@types/styled-components": "^5.1.26",
"axios": "^1.2.3",
"formik": "^2.2.9",
"i18next": "^22.4.5",
"i18next-browser-languagedetector": "^7.0.1",
"lottie-react-native": "^5.1.4",
"react": "18.1.0",
"react-hook-form": "^7.41.5",
"react-i18next": "^12.1.5",
"react-native": "0.70.6",
"react-native-bouncy-checkbox": "3.0.6",
"react-native-circular-progress-indicator": "^4.4.2",
"react-native-collapsible": "^1.6.0",
"react-native-gesture-handler": "^2.9.0",
"react-native-linear-gradient": "^2.6.2",
"react-native-modal": "^13.0.1",
"react-native-pager-view": "^6.1.4",
"react-native-reanimated": "^2.13.0",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.18.2",
"react-native-select-dropdown": "^3.1.0",
"react-native-simple-radio-button": "^2.7.4",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "^13.6.0",
"react-native-svg-transformer": "^1.0.0",
"react-native-switch-selector": "^2.3.0",
"react-native-tab-view": "^3.5.0",
"react-native-vector-icons": "^9.2.0",
"react-redux": "^8.0.5",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.6",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/runtime": "^7.20.6",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-community/eslint-config": "^2.0.0",
"@storybook/react-native": "^6.0.1-beta.11",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/jest-native": "^5.3.2",
"@testing-library/react-native": "^11.5.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.21",
"@types/react-native": "^0.70.6",
"@types/react-native-simple-radio-button": "^2.7.2",
"@types/react-native-vector-icons": "^6.4.12",
"@types/react-redux": "^7.1.24",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components-react-native": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"metro-react-native-babel-preset": "^0.72.3",
"react-native-reanimated": "^2.13.0",
"react-native-safe-area-context": "^4.4.1",
"react-test-renderer": "18.1.0",
"typescript": "^4.8.3"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|@react-native/|@react-native-community/|@react-navigation/.*|redux-persist/.*|moti/.*)"
],
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}