aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-22 00:06:43 +0900
committernsfisis <nsfisis@gmail.com>2024-08-22 00:07:56 +0900
commitad46f1e28bfe2de8969b46d2a24ae2b24b0658a7 (patch)
treeb11c846b6e68a524702a956cf214c1d7c5aea67e
parent483e297f4789fb1fdaa241f87686a00ef55a046d (diff)
downloadphperkaigi-2025-albatross-ad46f1e28bfe2de8969b46d2a24ae2b24b0658a7.tar.gz
phperkaigi-2025-albatross-ad46f1e28bfe2de8969b46d2a24ae2b24b0658a7.tar.zst
phperkaigi-2025-albatross-ad46f1e28bfe2de8969b46d2a24ae2b24b0658a7.zip
feat(frontend): add jotai
-rw-r--r--frontend/package-lock.json36
-rw-r--r--frontend/package.json2
2 files changed, 35 insertions, 3 deletions
diff --git a/frontend/package-lock.json b/frontend/package-lock.json
index ad96c48..6953cef 100644
--- a/frontend/package-lock.json
+++ b/frontend/package-lock.json
@@ -14,6 +14,8 @@
"@remix-run/serve": "^2.10.3",
"cookie": "^0.6.0",
"isbot": "^5.1.13",
+ "jotai": "^2.9.3",
+ "jotai-effect": "^1.0.0",
"jwt-decode": "^4.0.0",
"openapi-fetch": "^0.10.2",
"prismjs": "^1.29.0",
@@ -2300,13 +2302,13 @@
"version": "15.7.12",
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz",
"integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==",
- "dev": true
+ "devOptional": true
},
"node_modules/@types/react": {
"version": "18.3.3",
"resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz",
"integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==",
- "dev": true,
+ "devOptional": true,
"dependencies": {
"@types/prop-types": "*",
"csstype": "^3.0.2"
@@ -3682,7 +3684,7 @@
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
- "dev": true
+ "devOptional": true
},
"node_modules/damerau-levenshtein": {
"version": "1.0.8",
@@ -6503,6 +6505,34 @@
"jiti": "bin/jiti.js"
}
},
+ "node_modules/jotai": {
+ "version": "2.9.3",
+ "resolved": "https://registry.npmjs.org/jotai/-/jotai-2.9.3.tgz",
+ "integrity": "sha512-IqMWKoXuEzWSShjd9UhalNsRGbdju5G2FrqNLQJT+Ih6p41VNYe2sav5hnwQx4HJr25jq9wRqvGSWGviGG6Gjw==",
+ "engines": {
+ "node": ">=12.20.0"
+ },
+ "peerDependencies": {
+ "@types/react": ">=17.0.0",
+ "react": ">=17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jotai-effect": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/jotai-effect/-/jotai-effect-1.0.0.tgz",
+ "integrity": "sha512-eCgKKG4BACDzuJGYTu0xZRk1C1MEOvbAhC3L8w7YufQ2lSLORwNX/WFnCuZxLFX0sDLkTUeoUzOYaw8wnXY+UQ==",
+ "peerDependencies": {
+ "jotai": ">=2.5.0"
+ }
+ },
"node_modules/js-levenshtein": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz",
diff --git a/frontend/package.json b/frontend/package.json
index 5022494..1238349 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -22,6 +22,8 @@
"@remix-run/serve": "^2.10.3",
"cookie": "^0.6.0",
"isbot": "^5.1.13",
+ "jotai": "^2.9.3",
+ "jotai-effect": "^1.0.0",
"jwt-decode": "^4.0.0",
"openapi-fetch": "^0.10.2",
"prismjs": "^1.29.0",