Merge branch 'FeatureGamesList' into 'main'
Feature games list See merge request !1
Showing
- .env.example 13 additions, 0 deletions.env.example
- .env.sample 0 additions, 10 deletions.env.sample
- .gitignore 3 additions, 2 deletions.gitignore
- app/api/games/route.ts 8 additions, 0 deletionsapp/api/games/route.ts
- app/games/Game.tsx 10 additions, 6 deletionsapp/games/Game.tsx
- app/games/[gameid]/loading.tsx 1 addition, 0 deletionsapp/games/[gameid]/loading.tsx
- app/games/[gameid]/page.tsx 16 additions, 25 deletionsapp/games/[gameid]/page.tsx
- app/games/loading.tsx 1 addition, 0 deletionsapp/games/loading.tsx
- app/games/page.tsx 60 additions, 28 deletionsapp/games/page.tsx
- app/layout.tsx 47 additions, 5 deletionsapp/layout.tsx
- app/page.tsx 7 additions, 2 deletionsapp/page.tsx
- lib/igdb.ts 76 additions, 0 deletionslib/igdb.ts
- lib/utils.ts 20 additions, 0 deletionslib/utils.ts
- package-lock.json 193 additions, 81 deletionspackage-lock.json
- package.json 8 additions, 6 deletionspackage.json
- types/types.ts 159 additions, 0 deletionstypes/types.ts
.env.example
0 → 100644
.env.sample
deleted
100644 → 0
app/api/games/route.ts
0 → 100644
lib/igdb.ts
0 → 100644
lib/utils.ts
0 → 100644
This diff is collapsed.
... | ... | @@ -9,21 +9,23 @@ |
"lint": "next lint" | ||
}, | ||
"dependencies": { | ||
"@clerk/nextjs": "^4.17.1", | ||
"@clerk/nextjs": "^4.17.3", | ||
"@emotion/react": "^11.11.0", | ||
"@emotion/styled": "^11.11.0", | ||
"@mui/material": "^5.12.3", | ||
"@types/node": "20.1.0", | ||
"@mui/material": "^5.13.0", | ||
"@types/node": "20.1.4", | ||
"@types/react": "18.2.6", | ||
"@types/react-dom": "18.2.4", | ||
"eslint": "8.40.0", | ||
"eslint-config-next": "13.4.1", | ||
"next": "13.4.1", | ||
"eslint-config-next": "13.4.2", | ||
"next": "13.4.2", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-infinite-scroll-component": "^6.1.0", | ||
"react-query": "^3.39.3", | ||
"typescript": "5.0.4" | ||
}, | ||
"devDependencies": { | ||
"prisma": "^4.13.0" | ||
"prisma": "^4.14.0" | ||
} | ||
} |
types/types.ts
0 → 100644
Please register or sign in to comment