-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.25 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
{
"name": "expo-static-server",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start --dev-client",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build:simulator:android": "eas build --profile development:simulator --platform android --message $(git symbolic-ref --short HEAD) --local",
"build:simulator:ios": "eas build --profile development:simulator --platform ios --message $(git symbolic-ref --short HEAD) --local",
"build:device:android": "eas build --profile development:device --platform android --message $(git symbolic-ref --short HEAD) --local",
"build:device:ios": "eas build --profile development:device --platform ios --message $(git symbolic-ref --short HEAD) --local"
},
"dependencies": {
"@dr.pogodin/react-native-fs": "^2.30.3",
"@dr.pogodin/react-native-static-server": "^0.18.0",
"expo": "~52.0.27",
"expo-build-properties": "^0.13.2",
"expo-dev-client": "^5.0.10",
"expo-document-picker": "^13.0.2",
"expo-status-bar": "~2.0.1",
"react": "18.3.1",
"react-native": "0.76.6"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/react": "~18.3.12",
"typescript": "^5.3.3"
},
"private": true
}