-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.07 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
{
"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/**/*.{js,jsx} App.js --no-error-on-unmatched-pattern",
"debug": "./rndebugger/react-native-debugger",
"test": "jest"
},
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"@react-native-community/async-storage": "^1.11.0",
"@react-native-community/hooks": "^2.6.0",
"@react-native-picker/picker": "^1.9.2",
"@react-navigation/native": "^5.8.9",
"apollo-boost": "^0.4.9",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"expo": "~38.0.8",
"expo-status-bar": "^1.0.2",
"formik": "^2.2.2",
"graphql": "^15.4.0",
"react": "~16.11.0",
"react-devtools": "^4.8.2",
"react-dom": "~16.11.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-38.0.2.tar.gz",
"react-native-paper": "^4.4.0",
"react-native-picker-select": "^8.0.3",
"react-native-web": "~0.11.7",
"react-router-dom": "^5.2.0",
"react-router-native": "^5.2.0",
"use-debounce": "^5.1.0",
"yup": "^0.29.3"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@expo/webpack-config": "^0.12.43",
"@testing-library/jest-native": "^3.4.3",
"@testing-library/react-native": "^7.1.0",
"babel-eslint": "^10.1.0",
"babel-preset-expo": "~8.1.0",
"eslint": "^7.11.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.21.4",
"jest": "^26.6.3",
"jest-expo": "^39.0.0"
},
"jest": {
"preset": "jest-expo",
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"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/.*|react-router-native)"
]
},
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"private": true
}