-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.63 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
{
"name": "manyaak-mobile",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"dev": "npx cross-env APP_MODE=development",
"preview": "npx cross-env APP_MODE=preview",
"prod": "npx cross-env APP_MODE=production",
"start": "yarn dev expo start --dev-client",
"update:preview": "yarn preview eas update --branch preview --auto && yarn preview node slack-update.js",
"update:production": "yarn prod eas update --branch production --auto && yarn prod node slack-update.js",
"build:dev": "yarn dev eas build --profile development --platform all",
"build:preview": "yarn preview eas build --profile preview --platform all",
"build:production": "yarn prod eas build --profile production --platform all",
"android": "yarn dev expo run:android",
"ios": "yarn dev expo run:ios",
"eas-build-on-success": "node slack-build.js",
"eas-build-on-error": "node slack-build-fail.js"
},
"dependencies": {
"@react-native-seoul/kakao-login": "5.3.0",
"@react-navigation/native": "6.1.7",
"@react-navigation/native-stack": "6.9.13",
"expo": "49.0.8",
"expo-apple-authentication": "6.1.0",
"expo-splash-screen": "0.20.5",
"expo-status-bar": "1.6.0",
"expo-updates": "0.18.12",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "3.22.1",
"react-native-webview": "13.5.0"
},
"devDependencies": {
"@babel/core": "7.22.11",
"@types/react": "18.0.14",
"cross-env": "7.0.3",
"dotenv": "16.3.1",
"prettier": "3.0.2",
"typescript": "5.1.3"
},
"private": true
}