-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "sheeps-and-kittens",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"generate-sounds": "bun scripts/generate-sounds.js",
"test": "jest",
"test:e2e": "maestro test .maestro/",
"test:e2e:one": "maestro test",
"build:e2e:android": "eas build --platform android --profile e2e --local --output app.apk",
"build:e2e:ios": "eas build --platform ios --profile e2e --local --output app.tar.gz"
},
"dependencies": {
"expo": "^55.0.0-preview.11",
"expo-av": "^16.0.8",
"expo-haptics": "~55.0.6",
"expo-status-bar": "~55.0.3",
"expo-updates": "~55.0.8",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-safe-area-context": "~5.6.2",
"react-native-web": "^0.21.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/react": "~19.2.10",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "~5.9.2"
},
"private": true,
"packageManager": "bun@1.3.9"
}