-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
97 lines (97 loc) · 3.38 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
{
"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",
"test": "jest",
"predeploy": "expo build:web",
"deploy": "vercel",
"preview": "vercel dev",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color"
},
"jest": {
"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/.*)"
]
},
"dependencies": {
"@hookform/error-message": "^2.0.0",
"@react-native-async-storage/async-storage": "~1.15.0",
"@react-native-community/masked-view": "0.1.11",
"@react-navigation/bottom-tabs": "^6.0.1",
"@react-navigation/drawer": "^6.0.1",
"@react-navigation/material-bottom-tabs": "^6.0.1",
"@react-navigation/native": "^6.0.1",
"@react-navigation/stack": "^6.0.1",
"@types/react-dom": "^17.0.9",
"axios": "^0.21.1",
"color": "3.1.2",
"dayjs": "^1.10.6",
"deepmerge": "^4.2.2",
"expo": "~42.0.1",
"expo-app-loading": "^1.1.2",
"expo-cli": "~4.7.3",
"expo-document-picker": "~9.2.4",
"expo-file-system": "~11.1.3",
"expo-image-picker": "~10.2.2",
"expo-linking": "~2.3.1",
"expo-secure-store": "~10.2.0",
"expo-splash-screen": "~0.11.2",
"expo-status-bar": "~1.0.4",
"expo-updates": "~0.8.2",
"expo-web-browser": "~9.2.0",
"lodash": "^4.17.21",
"native-base": "^3.0.6",
"polished": "^4.1.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hook-form": "^7.12.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",
"react-native-animation-library": "^0.0.8",
"react-native-appearance": "~0.3.3",
"react-native-gesture-handler": "~1.10.2",
"react-native-pager-view": "5.0.12",
"react-native-paper": "^4.9.2",
"react-native-paper-form-builder": "^2.1.2",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.4.0",
"react-native-status-bar-height": "^2.6.0",
"react-native-svg": "12.1.1",
"react-native-tab-view": "^3.0.1",
"react-native-vector-icons": "^8.1.0",
"react-native-web": "^0.17.1",
"sharp-cli": "^1.15.0",
"styled-components": "^5.3.0",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-react-jsx-source": "^7.14.5",
"@callstack/eslint-config": "^11.0.0",
"@expo/webpack-config": "^0.13.1",
"@types/color": "^3.0.2",
"@types/lodash": "^4.14.171",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/react-native-vector-icons": "^6.4.8",
"@types/styled-components": "^5.1.11",
"@types/styled-components-react-native": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-preset-expo": "^8.4.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest-expo": "^42.0.1",
"prettier-eslint": "^13.0.0",
"react-test-renderer": "^17.0.2",
"typescript": "~4.0.0"
},
"private": true
}