-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.66 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
{
"name": "vocaboost-app",
"version": "1.0.0",
"scripts": {
"start": "APP_VARIANT=development expo start --dev-client --clear",
"start-prod": "APP_VARIANT=development expo start --no-dev --minify",
"build-dev-and": "eas build --profile dev --platform android",
"build-dev-ios": "eas build --profile dev --platform ios",
"build-preview-and": "eas build --profile preview --platform android",
"build-preview-ios": "eas build --profile preview --platform ios",
"build-production-and": "eas build --profile production --platform android",
"build-production-ios": "eas build --profile production --platform ios",
"load-and": "eas build:run -p android",
"load-ios": "eas build:run -p ios",
"submit-and": "eas submit -p android",
"submit-ios": "eas submit -p ios",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,json}' --config ./.prettierrc --ignore-unknown",
"lint": "eslint src --fix"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@react-native-async-storage/async-storage": "^1.18.1",
"@react-native-clipboard/clipboard": "^1.11.2",
"@react-native-google-signin/google-signin": "^9.0.2",
"@react-navigation/material-bottom-tabs": "^6.2.15",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"axios": "^1.3.4",
"buffer": "^6.0.3",
"eas-cli": "^3.9.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"expo": "~48.0.10",
"expo-auth-session": "~4.0.3",
"expo-crypto": "~12.2.1",
"expo-dev-client": "~2.1.6",
"expo-font": "~11.1.1",
"expo-splash-screen": "~0.18.1",
"expo-status-bar": "~1.4.4",
"expo-web-browser": "~12.1.1",
"jwt-decode": "^3.1.2",
"native-base": "^3.4.28",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-feather": "^2.0.10",
"react-native": "0.71.6",
"react-native-device-info": "^10.6.0",
"react-native-paper": "^5.6.0",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-svg": "^13.9.0",
"react-native-tts": "^4.1.0",
"react-use-websocket": "^3.0.0",
"styled-components": "^5.3.9"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "2.8.7",
"react-native-dotenv": "^3.4.8"
},
"private": true
}