Update npm pacakges

This commit is contained in:
Zoe Roux 2025-06-08 22:06:13 +02:00
parent f8aae2f701
commit 1fdabaa63a
No known key found for this signature in database
7 changed files with 576 additions and 639 deletions

View File

@ -19,7 +19,6 @@ export const expo: ExpoConfig = {
slug: "kyoo", slug: "kyoo",
scheme: "kyoo", scheme: "kyoo",
version: "1.0.0", version: "1.0.0",
sdkVersion: "52.0.0",
newArchEnabled: true, newArchEnabled: true,
platforms: ["ios", "android"], platforms: ["ios", "android"],
orientation: "default", orientation: "default",

File diff suppressed because it is too large Load Diff

View File

@ -16,37 +16,37 @@
"eas-build-post-install": "cd android && ./gradlew generateCodegenArtifactsFromSchema && react-native config | jq -r '.dependencies[].name' | xargs --replace=PROJECT -- sed -i -e '/implementation(\"com.facebook.react:react-android\")/a\\' -e 'implementation project(\":PROJECT\")' app/build.gradle" "eas-build-post-install": "cd android && ./gradlew generateCodegenArtifactsFromSchema && react-native config | jq -r '.dependencies[].name' | xargs --replace=PROJECT -- sed -i -e '/implementation(\"com.facebook.react:react-android\")/a\\' -e 'implementation project(\":PROJECT\")' app/build.gradle"
}, },
"dependencies": { "dependencies": {
"@expo/html-elements": "^0.11.2", "@expo/html-elements": "^0.12.5",
"@material-symbols/svg-400": "^0.28.2", "@material-symbols/svg-400": "^0.31.6",
"@tanstack/react-query": "^5.66.0", "@tanstack/react-query": "^5.80.6",
"caniuse-api": "^3.0.0", "caniuse-api": "^3.0.0",
"expo": "~52.0.35", "expo": "~53.0.11",
"expo-build-properties": "^0.13.2", "expo-build-properties": "^0.14.6",
"expo-localization": "^16.0.1", "expo-localization": "^16.1.5",
"expo-updates": "~0.26.19", "expo-updates": "~0.28.14",
"i18next-http-backend": "^3.0.2", "i18next-http-backend": "^3.0.2",
"jotai": "^2.12.0", "jotai": "^2.12.5",
"one": "1.1.445", "one": "1.1.486",
"react": "^19.0.0", "react": "19.0.0",
"react-i18next": "^15.4.0", "react-i18next": "^15.5.2",
"react-native": "0.76.7", "react-native": "0.79.3",
"react-native-mmkv": "^3.2.0", "react-native-mmkv": "^3.2.0",
"react-native-reanimated": "~3.16.1", "react-native-reanimated": "~3.17.4",
"react-native-screens": "~4.4.0", "react-native-screens": "~4.11.1",
"react-native-svg": "zoriya/react-native-svg#build", "react-native-svg": "15.11.2",
"react-native-web": "^0.19.13", "react-native-web": "^0.20.0",
"yoshiki": "1.2.14", "yoshiki": "1.2.14",
"zod": "^3.24.2" "zod": "^3.25.56"
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "1.9.4", "@biomejs/biome": "1.9.4",
"@react-native-community/cli": "^15.1.3", "@react-native-community/cli": "^18.0.0",
"@tanstack/react-query-devtools": "^5.66.0", "@tanstack/react-query-devtools": "^5.80.6",
"@types/react": "^19.0.8", "@types/react": "~19.0.10",
"@types/react-dom": "^19.0.3", "@types/react-dom": "^19.1.6",
"expo-dev-client": "^5.0.12", "expo-dev-client": "^5.2.0",
"typescript": "5.7.3", "typescript": "5.8.3",
"vite": "^6.1.0", "vite": "^6.3.5",
"vite-plugin-compile-time": "^0.4.6", "vite-plugin-compile-time": "^0.4.6",
"vite-plugin-svgr": "^4.3.0" "vite-plugin-svgr": "^4.3.0"
}, },

View File

@ -4,7 +4,7 @@ index 26db130f12f3edfe996a3cf08eef155b696a059a..b5b11ba46e8b773c4687ad77c5c5cc6c
+++ b/src/web/generator.ts +++ b/src/web/generator.ts
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
// //
import { useId, useInsertionEffect } from "react"; import { useId, useInsertionEffect } from "react";
-import { prefix } from "inline-style-prefixer"; -import { prefix } from "inline-style-prefixer";
+import { prefix } from "inline-style-prefixer/lib"; +import { prefix } from "inline-style-prefixer/lib";

9
front/shell.nix Normal file
View File

@ -0,0 +1,9 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
bun
biome
nodePackages.eas-cli
];
}

View File

@ -16,6 +16,7 @@ export default {
"@react-native/assets-registry/registry": resolvePath( "@react-native/assets-registry/registry": resolvePath(
"react-native-web/dist/modules/AssetRegistry/index.js", "react-native-web/dist/modules/AssetRegistry/index.js",
), ),
"^inline-style-prefixer$": "inline-style-prefixer/lib",
}, },
}, },
plugins: [ plugins: [
@ -28,6 +29,9 @@ export default {
"**/*.js": ["jsx"], "**/*.js": ["jsx"],
}, },
"inline-style-prefixer/lib": "interop", "inline-style-prefixer/lib": "interop",
"react-native-reanimated": {
"**/*.js": ["jsx"],
},
yoshiki: { yoshiki: {
"**/*.tsx": ["jsx"], "**/*.tsx": ["jsx"],
}, },

View File

@ -6,6 +6,7 @@ pkgs.mkShell {
(import ./auth/shell.nix {inherit pkgs;}) (import ./auth/shell.nix {inherit pkgs;})
(import ./back/shell.nix {inherit pkgs;}) (import ./back/shell.nix {inherit pkgs;})
(import ./chart/shell.nix {inherit pkgs;}) (import ./chart/shell.nix {inherit pkgs;})
(import ./front/shell.nix {inherit pkgs;})
(import ./scanner/shell.nix {inherit pkgs;}) (import ./scanner/shell.nix {inherit pkgs;})
(import ./transcoder/shell.nix {inherit pkgs;}) (import ./transcoder/shell.nix {inherit pkgs;})
]; ];