Skip to content

Commit

Permalink
Cleanup dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bperel committed Feb 29, 2024
1 parent ca80757 commit 71a19c6
Show file tree
Hide file tree
Showing 9 changed files with 161 additions and 114 deletions.
2 changes: 1 addition & 1 deletion apps/duck-estimator
2 changes: 1 addition & 1 deletion apps/duckguessr
Submodule duckguessr updated 64 files
+0 −38 .eslintrc.js
+42 −0 .eslintrc.json
+4 −3 .gitignore
+0 −1 .prettierrc.js
+1 −0 .prettierrc.json
+38 −0 App.vue
+8 −11 Dockerfile
+21 −0 api/.env
+1 −1 api/.eslintrc.json
+15 −16 api/index.ts
+25 −24 api/package.json
+600 −1,567 api/pnpm-lock.yaml
+7 −7 api/prisma/schema.prisma
+4 −2 api/prisma/views/duckguessr/gameScores.sql
+3 −1 api/prisma/views/duckguessr/userGameMedalPoints.sql
+3 −1 api/prisma/views/duckguessr/userMedalPoints.sql
+13 −8 api/round.ts
+5 −8 api/tsconfig.json
+1 −1 api/types/dataset.ts
+5 −6 api/types/game.ts
+1 −1 api/types/guess.ts
+2 −4 api/types/matchDetails.ts
+1 −14 api/types/playerStats.ts
+6 −2 api/types/roundWithScoresAndAuthor.ts
+7 −7 api/types/socketEvents.ts
+4 −4 locales/en-US.ts
+58 −56 package.json
+4,613 −1,052 pnpm-lock.yaml
+2 −2 src/App.vue
+1 −1 src/components/AlertNotConnected.vue
+15 −10 src/components/AuthorCard.vue
+8 −7 src/components/CircleProgressBar.vue
+1 −1 src/components/DuckguessrMenu.vue
+6 −5 src/components/Flag.vue
+25 −24 src/components/GameComponent.vue
+30 −29 src/components/GameScores.vue
+3 −3 src/components/GameStartingSoonModal.vue
+14 −11 src/components/LanguageSwitchDropdown.vue
+15 −15 src/components/Matchmaking.vue
+1 −1 src/components/Medal.stories.js
+16 −16 src/components/Medal.vue
+20 −20 src/components/MedalList.vue
+1 −1 src/components/MedalsAndLogin.vue
+2 −2 src/components/PlayerInfo.vue
+3 −3 src/components/PlayerTotalScore.vue
+4 −4 src/components/PodiumComponent.vue
+8 −7 src/components/ProgressBar.vue
+8 −7 src/components/RoundResult.vue
+16 −15 src/components/RoundResultModal.vue
+4 −4 src/components/RoundScore.vue
+15 −15 src/components/WaitingForPlayers.vue
+2 −1 src/composables/url.ts
+3 −3 src/composables/use-score-to-variant.ts
+28 −21 src/composables/user.ts
+1 −4 src/main.ts
+142 −108 src/pages/admin/clean.vue
+17 −17 src/pages/game/_id.vue
+9 −9 src/pages/index.vue
+2 −2 src/pages/matchmaking/_id.vue
+4 −4 src/pages/podium.vue
+16 −16 src/pages/profile.vue
+56 −64 src/stores/user.ts
+27 −24 tsconfig.json
+23 −19 vite.config.ts
2 changes: 1 addition & 1 deletion apps/dumili
Submodule dumili updated 66 files
+0 −1 .env.production
+3 −6 .eslintrc.json
+1 −0 .gitignore
+5 −1 api/.env
+2 −1 api/.eslintrc.json
+135 −17 api/index.ts
+0 −10 api/nodemon.json
+20 −17 api/package.json
+544 −406 api/pnpm-lock.yaml
+64 −0 api/prisma/migrations/20240218202452_/migration.sql
+24 −0 api/prisma/migrations/20240218205118_indexation_id_string/migration.sql
+5 −0 api/prisma/migrations/20240218205459_entry_to_indexation_fk/migration.sql
+56 −0 api/prisma/migrations/20240219210710_wip/migration.sql
+3 −0 api/prisma/migrations/migration_lock.toml
+179 −0 api/prisma/schema.prisma
+31 −23 api/services/_auth.ts
+0 −119 api/services/cloudinary-indexations/index.ts
+0 −19 api/services/cloudinary-indexations/kumiko.ts
+0 −19 api/services/cloudinary-indexations/ocr.ts
+0 −21 api/services/cloudinary-indexations/types.ts
+391 −0 api/services/indexations/index.ts
+21 −0 api/services/indexations/kumiko.ts
+23 −0 api/services/indexations/ocr.ts
+71 −0 api/services/indexations/types.ts
+0 −4 api/services/me.ts
+5 −3 api/tsconfig.json
+12 −0 docker-compose-dev.yml
+0 −4 index.html
+21 −14 package.json
+1 −1 paddleocr/requirements.txt
+4 −9 paddleocr/server.py
+938 −610 pnpm-lock.yaml
+11 −25 src/App.vue
+321 −182 src/components/Book.vue
+94 −100 src/components/Entry.vue
+4 −4 src/components/Gallery.vue
+13 −17 src/components/IssueSelect.vue
+31 −49 src/components/IssueSuggestionList.vue
+27 −19 src/components/IssueSuggestionModal.vue
+4 −4 src/components/Story.vue
+15 −16 src/components/StorySearch.vue
+39 −52 src/components/StorySuggestionList.vue
+47 −35 src/components/SuggestionList.vue
+1 −1 src/components/TableTooltip.vue
+46 −30 src/components/TextEditor.vue
+73 −42 src/components/UploadWidget.vue
+42 −68 src/composables/useAi.ts
+6 −7 src/composables/useDumiliSocket.ts
+16 −71 src/composables/useHint.ts
+10 −1 src/main.ts
+53 −58 src/pages/index.vue
+61 −69 src/pages/indexation/[id].vue
+0 −24 src/stores/ai.ts
+99 −167 src/stores/suggestions.ts
+2 −1 src/stores/tabs.ts
+3 −0 src/stores/ui.ts
+0 −4 src/stores/user.ts
+21 −0 src/style.scss
+2 −2 translations/messages.en.json
+1 −1 tsconfig.json
+0 −3 types/CloudinaryResourceContext.ts
+0 −14 types/CoverSearchResults.ts
+0 −14 types/KumikoResult.ts
+0 −5 types/OcrResults.ts
+42 −0 types/storyKinds.ts
+1 −0 vite.config.ts
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"pinia": "^2.1.7",
"timeago.js": "^4.0.2",
"v-contextmenu": "^3.2.0",
"vue": "^3.4.20",
"vue": "^3.4.21",
"vue-chartjs": "^5.3.0",
"vue-i18n": "^9.9.1",
"vue-mapbox-ts": "^0.9.10",
Expand Down
Loading

0 comments on commit 71a19c6

Please sign in to comment.