Files
Maciej Jastrzebski 20c5e446b8 chore: experiments app tweaks (#1416)
* chore: fix expo warnings

* chore: log info about micro and macro tasks

* chore: expo upgrade

* refactor: simplify event handling

* chore: remove invalid deps

* chore: fix tsc
2023-08-08 11:23:48 +02:00

30 lines
784 B
JSON

{
"name": "experiments-app",
"private": true,
"description": "Expo app for conducting experiments of React Native behaviour.",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"typecheck": "tsc -noEmit",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"dependencies": {
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"expo": "^49.0.0",
"expo-status-bar": "~1.6.0",
"react": "18.2.0",
"react-native": "0.72.3",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.14",
"typescript": "^5.1.3"
}
}