-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
100 lines (100 loc) · 3.04 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
{
"name": "instaclone",
"version": "2.1.0",
"author": "NiketanG",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"web:start": "react-app-rewired start",
"start": "react-native start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"android:release": "cd android && ./gradlew assembleRelease && cd ../ && mv android/app/build/outputs/apk/release/app-release.apk build/app-release.apk && adb install build/app-release.apk ",
"prepare": "husky install"
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@gorhom/bottom-sheet": "^4",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/netinfo": "^9.3.7",
"@react-native-firebase/app": "^17.3.1",
"@react-native-firebase/messaging": "^17.3.1",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/material-top-tabs": "^6.6.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"@supabase/supabase-js": "^2.10.0",
"base64-arraybuffer": "^1.0.2",
"date-fns": "^2.29.3",
"nanoid": "^4.0.1",
"react": "18.2.0",
"react-native": "0.71.3",
"react-native-config": "^1.5.0",
"react-native-gesture-handler": "^2.9.0",
"react-native-get-random-values": "^1.8.0",
"react-native-image-crop-picker": "^0.39.0",
"react-native-inappbrowser-reborn": "^3.7.0",
"react-native-pager-view": "^6.1.4",
"react-native-paper": "^5.2.0",
"react-native-reanimated": "^3.0.1",
"react-native-safe-area-context": "^4.5.0",
"react-native-screens": "^3.20.0",
"react-native-svg": "^13.8.0",
"react-native-tab-view": "^3.5.1",
"react-native-url-polyfill": "^1.3.0",
"react-native-vector-icons": "^9.2.0",
"react-native-vision-camera": "^2.15.4",
"react-query": "^3.39.3",
"reanimated-bottom-sheet": "^1.0.0-alpha.22",
"rn-fetch-blob": "^0.12.0",
"use-memo-one": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"@types/react-native-vector-icons": "^6.4.13",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.2.1",
"lint-staged": "^13.1.2",
"metro-react-native-babel-preset": "0.73.7",
"prettier": "^2.4.1",
"react-test-renderer": "18.2.0",
"typescript": "4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}