chore: upgrade expo sdk to v47
This commit is contained in:
parent
821f8331e5
commit
8f2ae38858
6 changed files with 1040 additions and 544 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
use flake
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -12,3 +12,4 @@ web-build/
|
||||||
|
|
||||||
# macOS
|
# macOS
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.direnv/
|
||||||
|
|
43
flake.lock
Normal file
43
flake.lock
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"flake-utils": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1676283394,
|
||||||
|
"narHash": "sha256-XX2f9c3iySLCw54rJ/CZs+ZK6IQy7GXNY4nSOyu2QG4=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "3db36a8b464d0c4532ba1c7dda728f4576d6d073",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1677413016,
|
||||||
|
"narHash": "sha256-dwvL0VK5iyxXPQzJOPzYmuVinh/R9hwRu7eYq6Bf6ag=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "84e33aea0f7a8375c92458c5b6cad75fa1dd561b",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixpkgs-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": "flake-utils",
|
||||||
|
"nixpkgs": "nixpkgs"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "root",
|
||||||
|
"version": 7
|
||||||
|
}
|
25
flake.nix
Normal file
25
flake.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
inputs = {
|
||||||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||||
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = { self, nixpkgs, flake-utils }:
|
||||||
|
flake-utils.lib.eachDefaultSystem(system:
|
||||||
|
let
|
||||||
|
pkgs = import nixpkgs {
|
||||||
|
inherit system;
|
||||||
|
};
|
||||||
|
inherit (pkgs) lib;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
devShells.default = pkgs.mkShell {
|
||||||
|
nativeBuildInputs = with pkgs; [
|
||||||
|
nodejs
|
||||||
|
nodePackages.yarn
|
||||||
|
chromium
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
32
package.json
32
package.json
|
@ -10,35 +10,35 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@expo/vector-icons": "^13.0.0",
|
"@expo/vector-icons": "^13.0.0",
|
||||||
"@expo/webpack-config": "^0.17.0",
|
"@expo/webpack-config": "^0.17.2",
|
||||||
"@react-native-async-storage/async-storage": "~1.17.3",
|
"@react-native-async-storage/async-storage": "~1.17.3",
|
||||||
"@react-native-picker/picker": "2.4.2",
|
"@react-native-picker/picker": "2.4.8",
|
||||||
"@react-navigation/bottom-tabs": "^6.4.0",
|
"@react-navigation/bottom-tabs": "^6.4.0",
|
||||||
"@react-navigation/native": "^6.0.12",
|
"@react-navigation/native": "^6.0.12",
|
||||||
"@react-navigation/native-stack": "^6.8.0",
|
"@react-navigation/native-stack": "^6.8.0",
|
||||||
"cheerio": "^1.0.0-rc.12",
|
"cheerio": "^1.0.0-rc.12",
|
||||||
"expo": "~46.0.9",
|
"expo": "^47.0.0",
|
||||||
"expo-file-system": "~14.1.0",
|
"expo-file-system": "~15.1.1",
|
||||||
"expo-status-bar": "~1.4.0",
|
"expo-status-bar": "~1.4.2",
|
||||||
"react": "18.0.0",
|
"react": "18.1.0",
|
||||||
"react-dom": "18.0.0",
|
"react-dom": "18.1.0",
|
||||||
"react-native": "0.69.5",
|
"react-native": "0.70.5",
|
||||||
"react-native-fast-image": "^8.6.1",
|
"react-native-fast-image": "^8.6.1",
|
||||||
"react-native-gesture-handler": "~2.5.0",
|
"react-native-gesture-handler": "~2.8.0",
|
||||||
"react-native-image-progress": "^1.2.0",
|
"react-native-image-progress": "^1.2.0",
|
||||||
"react-native-modalize": "^2.1.1",
|
"react-native-modalize": "^2.1.1",
|
||||||
"react-native-progress": "^5.0.0",
|
"react-native-progress": "^5.0.0",
|
||||||
"react-native-safe-area-context": "4.3.1",
|
"react-native-safe-area-context": "4.4.1",
|
||||||
"react-native-screens": "~3.15.0",
|
"react-native-screens": "~3.18.0",
|
||||||
"react-native-svg": "12.3.0",
|
"react-native-svg": "13.4.0",
|
||||||
"react-native-web": "~0.18.7",
|
"react-native-web": "~0.18.7",
|
||||||
"react-query": "^3.39.2"
|
"react-query": "^3.39.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.12.9",
|
"@babel/core": "^7.19.3",
|
||||||
"@types/react": "~18.0.14",
|
"@types/react": "~18.0.24",
|
||||||
"@types/react-native": "~0.69.1",
|
"@types/react-native": "~0.70.6",
|
||||||
"typescript": "~4.3.5"
|
"typescript": "^4.6.3"
|
||||||
},
|
},
|
||||||
"private": true
|
"private": true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue