-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.82 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
{
"version": "1.9.0",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"dependencies": {
"@expo/vector-icons": "^12.0.0",
"@react-native-async-storage/async-storage": "~1.15.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "5.10.0",
"@react-navigation/drawer": "5.10.0",
"@react-navigation/native": "^5.7.0",
"@react-navigation/stack": "5.10.0",
"axios": "^0.19.2",
"expo": "43.0.5",
"expo-application": "~4.0.0",
"expo-constants": "~12.1.3",
"expo-device": "~4.0.3",
"expo-location": "~13.0.4",
"expo-permissions": "~13.0.3",
"expo-updates": "~0.10.15",
"i18next": "^19.4.3",
"lodash": "^4.17.15",
"metro-react-native-babel-preset": "^0.59.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-i18next": "^11.3.5",
"react-native": "0.64.3",
"react-native-credit-card-input": "^0.4.1",
"react-native-dotenv": "^0.2.0",
"react-native-gesture-handler": "~1.10.2",
"react-native-image-slider-box": "^1.0.12",
"react-native-keyboard-aware-scroll-view": "^0.9.3",
"react-native-material-dropdown-v2": "^0.11.1",
"react-native-paper": "^3.7.0",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.8.0",
"react-native-stripe-api": "^0.1.0",
"react-native-table-component": "^1.2.1",
"react-native-web": "~0.13.12",
"sentry-expo": "^4.0.3"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.3",
"@types/lodash": "^4.14.165",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/react-native-dotenv": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-preset-expo": "8.3.0",
"codecov": "^3.8.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"git-cz": "^4.7.0",
"husky": "^8.0.0",
"jest": "^25.2.4",
"jest-expo": "^40.0.0",
"prettier": "^2.0.2",
"standard-version": "^9.0.0",
"typescript": "~4.0.0"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"format": "prettier --write '*/**/*.{ts,tsx}'",
"commit": "git-cz",
"release": "standard-version",
"prepare": "husky install"
}
}