-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.43 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.43 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
{
"scripts": {
"start": "react-native start",
"android:debug": "react-native run-android --variant debug",
"android:prod": "react-native run-android --variant release",
"ios:debug": "react-native run-ios --configuration Debug",
"ios:prod": "react-native run-ios --configuration Production",
"prepare": "husky install",
"precommit": "lint-staged",
"lint": "eslint .",
"check-types": "tsc --noemit",
"format": "prettier --write \"./**/*{.ts,.tsx}\"",
"format:check": "prettier --check \"./**/*{.ts,.tsx}\""
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@expo/react-native-action-sheet": "^3.13.0",
"@expo/vector-icons": "^12.0.0",
"@gorhom/bottom-sheet": "^4",
"@gorhom/portal": "^1.0.12",
"@react-native-async-storage/async-storage": "^1.15.17",
"@react-native-community/datetimepicker": "3.5.2",
"@react-navigation/native": "^6.0.6",
"@react-navigation/native-stack": "^6.2.5",
"axios": "^0.25.0",
"expo": "~43.0.0",
"expo-app-loading": "~1.2.1",
"expo-barcode-scanner": "~11.1.2",
"expo-camera": "~12.0.3",
"expo-font": "~10.0.3",
"expo-haptics": "~11.0.3",
"expo-image-picker": "~11.0.3",
"expo-status-bar": "~1.1.0",
"formik": "^2.2.9",
"jwt-decode": "^3.1.2",
"moment": "^2.29.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-bouncy-checkbox": "^2.1.10",
"react-native-dotenv": "^3.3.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-modal-datetime-picker": "^13.0.1",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.8.0",
"react-native-snap-carousel": "^3.9.1",
"react-native-web": "0.17.1",
"yup": "^0.32.11",
"expo-splash-screen": "~0.13.5",
"expo-updates": "~0.10.13"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"@types/react-native-snap-carousel": "^3.8.5",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"typescript": "~4.3.5"
},
"private": true,
"name": "chdr-mobile-app",
"version": "1.0.0"
}