-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.33 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.33 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "cozettev2",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start --dev-client",
"buildmode": "npx expo start --no-dev --minify",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint src/**/*.tsx App.tsx",
"fix": "eslint src/**/*.tsx App.tsx --fix",
"localBuild:ios": "eas build --platform ios --local",
"localBuild:android": "eas build --platform android --local --profile development",
"build:androidApk": "eas build --platform android --profile development",
"bundle": "react-native bundle --entry-file ./index.ts --platform ios --bundle-output ios/main.jsbundle",
"pouet": "cd ./android && ./gradlew app:assembleDebug && ./gradlew installDebug",
"androidBundle": "npx react-native bundle --platform android --dev false --entry-file index.ts --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res"
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@expo/webpack-config": "^0.17.2",
"@googlemaps/polyline-codec": "^1.0.28",
"@react-native-async-storage/async-storage": "~1.17.3",
"axios": "^1.3.5",
"expo": "~47.0.8",
"expo-apple-authentication": "~5.0.1",
"expo-auth-session": "~3.8.0",
"expo-av": "~13.0.3",
"expo-build-properties": "~0.4.1",
"expo-constants": "~14.0.2",
"expo-firebase-recaptcha": "~2.3.1",
"expo-linking": "~3.3.1",
"expo-localization": "~14.0.0",
"expo-location": "~15.0.1",
"expo-random": "~13.0.0",
"expo-secure-store": "~12.0.0",
"expo-sharing": "~11.0.1",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"expo-updates": "^0.15.6",
"expo-web-browser": "~12.0.0",
"firebase": "^9.15.0",
"google-maps": "^4.3.3",
"i18next": "^22.4.9",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-i18next": "^12.1.4",
"react-native": "0.70.8",
"react-native-confirmation-code-field": "^7.3.1",
"react-native-google-places-autocomplete": "^2.5.1",
"react-native-heroicons": "^3.2.0",
"react-native-maps": "^1.3.2",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-select-dropdown": "^3.3.0",
"react-native-svg": "13.4.0",
"react-native-web": "~0.18.9",
"react-native-webview": "11.23.1",
"react-router-dom": "^6.6.1",
"react-router-native": "^6.6.1",
"twrnc": "^3.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@react-native-community/eslint-config": "^3.2.0",
"@types/react": "~18.0.14",
"@types/react-native": "~0.70.6",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-universe": "^11.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "^2.8.1",
"react-native-dotenv": "^3.4.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"eslintConfig": {
"extends": "universe/native"
},
"private": true,
"proxy": "http://localhost:3333"
}