-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.17 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
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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint src",
"test": "jest"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*|typeorm/*|@react-native-*)"
],
"setupFiles": [
"./jestSetupFile.js",
"./node_modules/react-native-gesture-handler/jestSetup.js"
]
},
"dependencies": {
"@apollo/client": "^3.2.5",
"@react-native-async-storage/async-storage": "^1.13.2",
"@react-native-community/masked-view": "0.1.10",
"@react-native-picker/picker": "1.9.2",
"@react-navigation/bottom-tabs": "^5.11.2",
"@react-navigation/native": "^5.7.6",
"@react-navigation/stack": "^5.9.3",
"babel-plugin-dotenv-import": "^2.1.0",
"expo": "^40.0.0",
"expo-status-bar": "~1.0.3",
"formik": "^2.2.5",
"graphql": "^15.4.0",
"jest": "^26.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-dialog": "^6.1.2",
"react-native-elements": "^3.1.0",
"react-native-floating-action": "^1.21.0",
"react-native-gesture-handler": "~1.8.0",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.0",
"react-native-swipe-gestures": "^1.0.5",
"react-native-web": "~0.13.12",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.28",
"yup": "^0.29.3"
},
"devDependencies": {
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.2.0",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.19",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.8",
"@types/react-native": "~0.63.2",
"@types/react-native-dialog": "^5.6.2",
"@types/react-test-renderer": "^17.0.1",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-preset-expo": "^8.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"jest-expo": "^41.0.0",
"prettier": "^2.1.2",
"react-test-renderer": "16.14.0",
"ts-jest": "^26.5.5",
"typescript": "~4.0.0"
},
"private": true
}