-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.92 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
{
"name": "dsek-app",
"version": "2.0.1",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build:ios": "expo build:ios",
"eject": "expo eject",
"dev": "expo start --tunnel",
"deploy:android": "eas build --platform android --profile production",
"deploy:ios": "eas build --platform ios --profile production",
"deploy": "eas build --profile production",
"preview:android": "eas build --platform android --profile preview",
"preview:ios": "eas build --platform ios --profile preview",
"preview": "eas build --profile preview",
"preview-update": "eas update --branch preview",
"send-update": "eas update --branch production",
"submit:android": "eas submit -p android",
"submit:ios": "eas submit -p ios",
"submit": "eas submit"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.23.1",
"babel-plugin-module-resolver": "^5.0.2",
"expo": "^52.0.14",
"expo-asset": "~11.0.1",
"expo-device": "~7.0.1",
"expo-linking": "~7.0.3",
"expo-navigation-bar": "~4.0.5",
"expo-notifications": "~0.29.10",
"expo-splash-screen": "~0.29.13",
"expo-status-bar": "~2.0.0",
"expo-system-ui": "~4.0.5",
"expo-updates": "~0.26.9",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.3",
"react-native-safe-area-context": "4.12.0",
"react-native-webview": "13.12.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/react": "~18.3.12",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-universe": "^11.2.0",
"eslint-import-resolver-typescript": "^3.5.4",
"prettier": "^2.6.2",
"typescript": "^5.3.3"
},
"private": true
}