Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
bc1a58a
Connect creteRoom from backend
dongjin2008 Sep 13, 2023
283f205
Custom url for each room added
dongjin2008 Sep 13, 2023
98bd3ae
style: Format code with prettier and standardjs
deepsource-autofix[bot] Sep 13, 2023
c7ce1b8
Switched to cn in the button component
FleetAdmiralJakob Sep 14, 2023
65945a3
Removed unnecessary abstractions and added a little bit of stuff to t…
FleetAdmiralJakob Sep 14, 2023
59f83b8
style: Format code with prettier and standardjs
deepsource-autofix[bot] Sep 14, 2023
4c6b8c6
Working
dongjin2008 Sep 16, 2023
168536f
Merge remote-tracking branch 'origin/dev-pairplay' into dev-pairplay
dongjin2008 Sep 16, 2023
59f5198
Chat backend+fronted added
dongjin2008 Sep 17, 2023
1555f5b
style: format code with Prettier and StandardJS
deepsource-autofix[bot] Sep 17, 2023
7e0b6c0
Updated some stuff
FleetAdmiralJakob Sep 17, 2023
e9132d4
style: format code with Prettier and StandardJS
deepsource-autofix[bot] Sep 17, 2023
1f49928
Typed
dongjin2008 Sep 17, 2023
8fc20f0
style: format code with Prettier and StandardJS
deepsource-autofix[bot] Sep 17, 2023
cd1db61
Updated all package
dongjin2008 Sep 17, 2023
5efd4b3
Merge remote-tracking branch 'origin/dev-pairplay' into dev-pairplay
dongjin2008 Sep 17, 2023
55ec1f5
style: format code with Prettier and StandardJS
deepsource-autofix[bot] Sep 17, 2023
708358b
Updated some stuff
FleetAdmiralJakob Sep 17, 2023
3e898a6
style: format code with Prettier and StandardJS
deepsource-autofix[bot] Sep 17, 2023
a95dd39
Chat added
dongjin2008 Sep 17, 2023
2f9e14f
style: format code with Prettier and StandardJS
deepsource-autofix[bot] Sep 17, 2023
5268cf5
Fixed the border radius issue
dongjin2008 Sep 17, 2023
c715186
Merge remote-tracking branch 'origin/dev-pairplay' into dev-pairplay
dongjin2008 Sep 17, 2023
12d846b
style: format code with Prettier and StandardJS
deepsource-autofix[bot] Sep 17, 2023
88ef5ea
Merge branch 'backend-development' into dev-pairplay
FleetAdmiralJakob Sep 17, 2023
63815d6
style: format code with Prettier and StandardJS
deepsource-autofix[bot] Sep 17, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion convex/_generated/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* THIS CODE IS AUTOMATICALLY GENERATED.
*
* Generated by convex@1.2.1.
* Generated by convex@1.3.1.
* To regenerate, run `npx convex dev`.
* @module
*/
Expand Down
2 changes: 1 addition & 1 deletion convex/_generated/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* THIS CODE IS AUTOMATICALLY GENERATED.
*
* Generated by convex@1.2.1.
* Generated by convex@1.3.1.
* To regenerate, run `npx convex dev`.
* @module
*/
Expand Down
2 changes: 1 addition & 1 deletion convex/_generated/dataModel.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* THIS CODE IS AUTOMATICALLY GENERATED.
*
* Generated by convex@1.2.1.
* Generated by convex@1.3.1.
* To regenerate, run `npx convex dev`.
* @module
*/
Expand Down
2 changes: 1 addition & 1 deletion convex/_generated/server.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* THIS CODE IS AUTOMATICALLY GENERATED.
*
* Generated by convex@1.2.1.
* Generated by convex@1.3.1.
* To regenerate, run `npx convex dev`.
* @module
*/
Expand Down
2 changes: 1 addition & 1 deletion convex/_generated/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* THIS CODE IS AUTOMATICALLY GENERATED.
*
* Generated by convex@1.2.1.
* Generated by convex@1.3.1.
* To regenerate, run `npx convex dev`.
* @module
*/
Expand Down
2 changes: 1 addition & 1 deletion convex/rooms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const createRoom = mutation({
username: args.username,
roomId: roomId,
});
return { playId: playerId, roomId: roomId };
return { playerId: playerId, roomId: roomId };
},
});

Expand Down
43 changes: 22 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,35 @@
},
"dependencies": {
"@radix-ui/react-switch": "^1.0.3",
"@t3-oss/env-nextjs": "^0.6.0",
"@t3-oss/env-nextjs": "^0.6.1",
"@total-typescript/ts-reset": "^0.5.1",
"@vercel/analytics": "^1.0.2",
"clsx": "^2.0.0",
"convex": "^1.2.1",
"next": "^13.4.2",
"openai": "^4.5.0",
"convex": "^1.3.1",
"next": "^13.4.19",
"openai": "^4.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"zod": "^3.21.4"
"valtio": "^1.11.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/eslint": "^8.37.0",
"@types/node": "^18.16.0",
"@types/prettier": "^2.7.2",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"autoprefixer": "^10.4.14",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.2",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwind-merge": "^1.12.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.0.4"
"@types/eslint": "^8.44.2",
"@types/node": "^20.6.2",
"@types/prettier": "^3.0.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.49.0",
"eslint-config-next": "^13.4.19",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
},
"ct3aMetadata": {
"initVersion": "7.13.2-beta.ca0b017"
Expand Down
Loading