Skip to content

Commit

Permalink
chore: update modules
Browse files Browse the repository at this point in the history
  • Loading branch information
solufa committed May 7, 2024
1 parent d6d3d53 commit b76e926
Show file tree
Hide file tree
Showing 16 changed files with 9,848 additions and 16,951 deletions.
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"printWidth": 100,
"singleQuote": true
"singleQuote": true,
"plugins": ["prettier-plugin-organize-imports"]
}
2 changes: 1 addition & 1 deletion client/gtag.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ interface Window {
gtag(
type: 'event',
eventAction: string,
fieldObject: { event_label: string; event_category: string; value?: number }
fieldObject: { event_label: string; event_category: string; value?: number },
);
}
12,182 changes: 2,266 additions & 9,916 deletions client/package-lock.json

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@
"@aspida/axios": "^1.14.0",
"api": "file:../server/api",
"aspida": "^1.14.0",
"axios": "^1.4.0",
"axios": "^1.6.8",
"commonConstantsWithClient": "file:../server/commonConstantsWithClient",
"commonTypesWithClient": "file:../server/commonTypesWithClient",
"firebase": "^10.1.0",
"jotai": "^2.2.3",
"next": "^13.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"firebase": "^10.11.1",
"jotai": "^2.8.0",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"dotenv": "^16.3.1",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"dotenv": "^16.4.5",
"happy-css-modules": "^2.1.2",
"notios": "^0.4.1",
"pathpida": "^0.21.0"
"pathpida": "^0.22.0"
},
"engines": {
"node": ">=20.0.0"
Expand Down
2 changes: 1 addition & 1 deletion client/src/utils/firebase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const createAuth = () => {
return auth;
} else {
const firebaseConfig: FirebaseOptions = JSON.parse(
process.env.NEXT_PUBLIC_FIREBASE_CONFIG ?? '{}'
process.env.NEXT_PUBLIC_FIREBASE_CONFIG ?? '{}',
);
const auth = getAuth(initializeApp(firebaseConfig));
cachedAuth = auth;
Expand Down
Loading

0 comments on commit b76e926

Please sign in to comment.