mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-08 10:44:20 -04:00
Update npm pacakges
This commit is contained in:
parent
f8aae2f701
commit
1fdabaa63a
@ -19,7 +19,6 @@ export const expo: ExpoConfig = {
|
||||
slug: "kyoo",
|
||||
scheme: "kyoo",
|
||||
version: "1.0.0",
|
||||
sdkVersion: "52.0.0",
|
||||
newArchEnabled: true,
|
||||
platforms: ["ios", "android"],
|
||||
orientation: "default",
|
||||
|
1150
front/bun.lock
1150
front/bun.lock
File diff suppressed because it is too large
Load Diff
@ -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"
|
||||
},
|
||||
"dependencies": {
|
||||
"@expo/html-elements": "^0.11.2",
|
||||
"@material-symbols/svg-400": "^0.28.2",
|
||||
"@tanstack/react-query": "^5.66.0",
|
||||
"@expo/html-elements": "^0.12.5",
|
||||
"@material-symbols/svg-400": "^0.31.6",
|
||||
"@tanstack/react-query": "^5.80.6",
|
||||
"caniuse-api": "^3.0.0",
|
||||
"expo": "~52.0.35",
|
||||
"expo-build-properties": "^0.13.2",
|
||||
"expo-localization": "^16.0.1",
|
||||
"expo-updates": "~0.26.19",
|
||||
"expo": "~53.0.11",
|
||||
"expo-build-properties": "^0.14.6",
|
||||
"expo-localization": "^16.1.5",
|
||||
"expo-updates": "~0.28.14",
|
||||
"i18next-http-backend": "^3.0.2",
|
||||
"jotai": "^2.12.0",
|
||||
"one": "1.1.445",
|
||||
"react": "^19.0.0",
|
||||
"react-i18next": "^15.4.0",
|
||||
"react-native": "0.76.7",
|
||||
"jotai": "^2.12.5",
|
||||
"one": "1.1.486",
|
||||
"react": "19.0.0",
|
||||
"react-i18next": "^15.5.2",
|
||||
"react-native": "0.79.3",
|
||||
"react-native-mmkv": "^3.2.0",
|
||||
"react-native-reanimated": "~3.16.1",
|
||||
"react-native-screens": "~4.4.0",
|
||||
"react-native-svg": "zoriya/react-native-svg#build",
|
||||
"react-native-web": "^0.19.13",
|
||||
"react-native-reanimated": "~3.17.4",
|
||||
"react-native-screens": "~4.11.1",
|
||||
"react-native-svg": "15.11.2",
|
||||
"react-native-web": "^0.20.0",
|
||||
"yoshiki": "1.2.14",
|
||||
"zod": "^3.24.2"
|
||||
"zod": "^3.25.56"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "1.9.4",
|
||||
"@react-native-community/cli": "^15.1.3",
|
||||
"@tanstack/react-query-devtools": "^5.66.0",
|
||||
"@types/react": "^19.0.8",
|
||||
"@types/react-dom": "^19.0.3",
|
||||
"expo-dev-client": "^5.0.12",
|
||||
"typescript": "5.7.3",
|
||||
"vite": "^6.1.0",
|
||||
"@react-native-community/cli": "^18.0.0",
|
||||
"@tanstack/react-query-devtools": "^5.80.6",
|
||||
"@types/react": "~19.0.10",
|
||||
"@types/react-dom": "^19.1.6",
|
||||
"expo-dev-client": "^5.2.0",
|
||||
"typescript": "5.8.3",
|
||||
"vite": "^6.3.5",
|
||||
"vite-plugin-compile-time": "^0.4.6",
|
||||
"vite-plugin-svgr": "^4.3.0"
|
||||
},
|
||||
|
@ -4,7 +4,7 @@ index 26db130f12f3edfe996a3cf08eef155b696a059a..b5b11ba46e8b773c4687ad77c5c5cc6c
|
||||
+++ b/src/web/generator.ts
|
||||
@@ -4,7 +4,7 @@
|
||||
//
|
||||
|
||||
|
||||
import { useId, useInsertionEffect } from "react";
|
||||
-import { prefix } from "inline-style-prefixer";
|
||||
+import { prefix } from "inline-style-prefixer/lib";
|
||||
|
9
front/shell.nix
Normal file
9
front/shell.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{pkgs ? import <nixpkgs> {}}:
|
||||
pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
bun
|
||||
biome
|
||||
nodePackages.eas-cli
|
||||
];
|
||||
}
|
||||
|
@ -16,6 +16,7 @@ export default {
|
||||
"@react-native/assets-registry/registry": resolvePath(
|
||||
"react-native-web/dist/modules/AssetRegistry/index.js",
|
||||
),
|
||||
"^inline-style-prefixer$": "inline-style-prefixer/lib",
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
@ -28,6 +29,9 @@ export default {
|
||||
"**/*.js": ["jsx"],
|
||||
},
|
||||
"inline-style-prefixer/lib": "interop",
|
||||
"react-native-reanimated": {
|
||||
"**/*.js": ["jsx"],
|
||||
},
|
||||
yoshiki: {
|
||||
"**/*.tsx": ["jsx"],
|
||||
},
|
||||
|
@ -6,6 +6,7 @@ pkgs.mkShell {
|
||||
(import ./auth/shell.nix {inherit pkgs;})
|
||||
(import ./back/shell.nix {inherit pkgs;})
|
||||
(import ./chart/shell.nix {inherit pkgs;})
|
||||
(import ./front/shell.nix {inherit pkgs;})
|
||||
(import ./scanner/shell.nix {inherit pkgs;})
|
||||
(import ./transcoder/shell.nix {inherit pkgs;})
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user