Skip to content

Commit

Permalink
chore(): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitMY committed Dec 20, 2024
1 parent e82ffd9 commit 5348ec9
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 52 deletions.
34 changes: 17 additions & 17 deletions docs/docs/technology/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ Each node represents a different module or function in the pipeline, with a link
```mermaid
flowchart TD
A0[Spoken Language Audio] --> A1(Spoken Language Text)
A1[Spoken Language Text] --> B[<a href='https://github.com/sign/translate/issues/10'>Language Identification</a>]
A1 --> C(<a href='https://github.com/sign/translate/tree/master/functions/src/text-normalization'>Normalized Text</a>)
A1[Spoken Language Text] --> B[<a target='_blank' href='https://github.com/sign/translate/issues/10'>Language Identification</a>]
A1 --> C(<a target='_blank' href='https://github.com/sign/translate/tree/master/functions/src/text-normalization'>Normalized Text</a>)
B --> C
C & B --> Q(<a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter'>Sentence Splitter</a>)
Q & B --> D(<a href='https://github.com/sign-language-processing/signbank-plus'>SignWriting</a>)
C -.-> M(<a href='https://github.com/ZurichNLP/spoken-to-signed-translation' title='We would like to move away from glosses'>Glosses</a>)
C & B --> Q(<a target='_blank' href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter'>Sentence Splitter</a>)
Q & B --> D(<a target='_blank' href='https://github.com/sign-language-processing/signbank-plus'>SignWriting</a>)
C -.-> M(<a target='_blank' href='https://github.com/ZurichNLP/spoken-to-signed-translation' title='We would like to move away from glosses'>Glosses</a>)
M -.-> E
D --> E(<a href='https://github.com/sign-language-processing/signwriting-animation'>Pose Sequence</a>)
D -.-> I(<a href='https://github.com/sign-language-processing/signwriting-illustration'>Illustration</a>)
N --> H(<a href='https://github.com/sign/translate/issues/68'>3D Avatar</a>)
N --> G(<a href='https://github.com/sign-language-processing/pose'>Skeleton Viewer</a>)
N --> F(<a href='https://github.com/sign-language-processing/pose-to-video' title='Help wanted!'>Human GAN</a>)
D --> E(<a target='_blank' href='https://github.com/sign-language-processing/signwriting-animation'>Pose Sequence</a>)
D -.-> I(<a target='_blank' href='https://github.com/sign-language-processing/signwriting-illustration'>Illustration</a>)
N --> H(<a target='_blank' href='https://github.com/sign/translate/issues/68'>3D Avatar</a>)
N --> G(<a target='_blank' href='https://github.com/sign-language-processing/pose'>Skeleton Viewer</a>)
N --> F(<a target='_blank' href='https://github.com/sign-language-processing/pose-to-video' title='Help wanted!'>Human GAN</a>)
H & G & F --> J(Video)
J --> K(Share Translation)
D -.-> L(<a href='https://github.com/sign-language-processing/signwriting-description' title='Poor performance. Help wanted!'>Description</a>)
O --> N(<a href='https://github.com/sign-language-processing/fluent-pose-synthesis' title='Currently skipped. Help Wanted!'>Fluent Pose Sequence</a>)
E --> O(<a href='https://github.com/sign-language-processing/pose-anonymization'>Pose Appearance Transfer</a>)
D -.-> L(<a target='_blank' href='https://github.com/sign-language-processing/signwriting-description' title='Poor performance. Help wanted!'>Description</a>)
O --> N(<a target='_blank' href='https://github.com/sign-language-processing/fluent-pose-synthesis' title='Currently skipped. Help Wanted!'>Fluent Pose Sequence</a>)
E --> O(<a target='_blank' href='https://github.com/sign-language-processing/pose-anonymization'>Pose Appearance Transfer</a>)
linkStyle default stroke:green;
linkStyle 3,5,7 stroke:lightgreen;
Expand Down Expand Up @@ -110,12 +110,12 @@ flowchart TD
A0[Upload Sign Language Video] --> A3[Video]
A1[Camera Sign Language Video] --> A3
A3 --> B(Pose Estimation)
B --> C(<a href='https://github.com/sign-language-processing/segmentation'>Segmentation</a>)
C & B --> D(<a href='https://github.com/sign-language-processing/transcription'>SignWriting Transcription</a>)
A2[Language Selector] --> E(<a href='https://github.com/sign-language-processing/signbank-plus'>Spoken Language Text</a>)
B --> C(<a target='_blank' href='https://github.com/sign-language-processing/segmentation'>Segmentation</a>)
C & B --> D(<a target='_blank' href='https://github.com/sign-language-processing/transcription'>SignWriting Transcription</a>)
A2[Language Selector] --> E(<a target='_blank' href='https://github.com/sign-language-processing/signbank-plus'>Spoken Language Text</a>)
D --> E
E --> F(Spoken Language Audio)
E --> G(<a href='https://github.com/sign/translate/issues/19'>Share Translation</a>)
E --> G(<a target='_blank' href='https://github.com/sign/translate/issues/19'>Share Translation</a>)
C -.-> H(Sign Image)
Expand Down
16 changes: 8 additions & 8 deletions functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@
"@firebase/database-types": "1.0.7",
"@google-cloud/storage": "7.14.0",
"@sign-mt/browsermt": "0.2.3",
"@unkey/api": "0.28.0",
"@unkey/ratelimit": "0.4.7",
"@unkey/api": "0.29.0",
"@unkey/ratelimit": "0.5.0",
"cors": "2.8.5",
"express": "4.21.2",
"express-async-errors": "3.1.1",
"firebase-admin": "13.0.1",
"firebase-functions": "6.1.2",
"firebase-admin": "13.0.2",
"firebase-functions": "6.2.0",
"http-errors": "2.0.0",
"http-proxy-middleware": "^3.0.3",
"node-fetch": "2.6.7",
"openai": "4.76.3",
"openai": "4.77.0",
"request-ip": "3.3.0"
},
"devDependencies": {
Expand All @@ -43,10 +43,10 @@
"@types/jest": "29.5.14",
"@types/node-fetch": "2.6.12",
"@types/request-ip": "0.0.41",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"eslint": "8.57.0",
"firebase-functions-test": "3.3.0",
"firebase-functions-test": "3.4.0",
"firebase-tools": "13.29.1",
"jest": "29.7.0",
"minimatch": "10.0.1",
Expand Down
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"scripts": {
"ng": "ng",
"lint": "NODE_OPTIONS=--max_old_space_size=16384 ng lint",
"start": "ng serve --host 0.0.0.0 --disable-host-check",
"start": "ng serve --host 0.0.0.0",
"build": "ng build --configuration=production --base-href=/",
"build:stats": "ng build --stats-json",
"analyze": "webpack-bundle-analyzer dist/sign-translate/browser/stats.json",
Expand Down Expand Up @@ -36,26 +36,26 @@
},
"private": true,
"dependencies": {
"@angular/animations": "19.0.4",
"@angular/cdk": "19.0.3",
"@angular/common": "19.0.4",
"@angular/compiler": "19.0.4",
"@angular/core": "19.0.4",
"@angular/forms": "19.0.4",
"@angular/material": "19.0.3",
"@angular/platform-browser": "19.0.4",
"@angular/platform-browser-dynamic": "19.0.4",
"@angular/platform-server": "19.0.4",
"@angular/router": "19.0.4",
"@angular/service-worker": "19.0.4",
"@angular/ssr": "19.0.5",
"@angular/animations": "19.0.5",
"@angular/cdk": "19.0.4",
"@angular/common": "19.0.5",
"@angular/compiler": "19.0.5",
"@angular/core": "19.0.5",
"@angular/forms": "19.0.5",
"@angular/material": "19.0.4",
"@angular/platform-browser": "19.0.5",
"@angular/platform-browser-dynamic": "19.0.5",
"@angular/platform-server": "19.0.5",
"@angular/router": "19.0.5",
"@angular/service-worker": "19.0.5",
"@angular/ssr": "19.0.6",
"@asymmetrik/ngx-leaflet": "18.0.1",
"@capacitor-firebase/analytics": "6.2.0",
"@capacitor-firebase/app": "6.2.0",
"@capacitor-firebase/app-check": "6.2.0",
"@capacitor-firebase/crashlytics": "6.2.0",
"@capacitor-firebase/performance": "6.2.0",
"@capacitor-firebase/storage": "6.2.0",
"@capacitor-firebase/analytics": "6.3.1",
"@capacitor-firebase/app": "6.3.1",
"@capacitor-firebase/app-check": "6.3.1",
"@capacitor-firebase/crashlytics": "6.3.1",
"@capacitor-firebase/performance": "6.3.1",
"@capacitor-firebase/storage": "6.3.1",
"@capacitor/android": "6.2.0",
"@capacitor/clipboard": "6.0.2",
"@capacitor/core": "6.2.0",
Expand Down Expand Up @@ -84,7 +84,7 @@
"@tensorflow/tfjs-core": "4.22.0",
"@tensorflow/tfjs-layers": "4.22.0",
"base64-blob": "1.4.1",
"capacitor-blob-writer": "1.1.17",
"capacitor-blob-writer": "1.1.19",
"cld3-asm": "4.0.0",
"comlink": "4.4.2",
"express": "4.21.2",
Expand All @@ -106,15 +106,15 @@
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/architect": "0.1900.5",
"@angular-devkit/build-angular": "19.0.5",
"@angular-devkit/architect": "0.1900.6",
"@angular-devkit/build-angular": "19.0.6",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "19.0.5",
"@angular/compiler-cli": "19.0.4",
"@angular/cli": "19.0.6",
"@angular/compiler-cli": "19.0.5",
"@capacitor/assets": "3.0.5",
"@capacitor/cli": "6.2.0",
"@ionic/angular-server": "8.4.1",
Expand All @@ -132,8 +132,8 @@
"@types/web-app-manifest": "1.0.8",
"@types/webgl2": "0.0.11",
"@types/wicg-file-system-access": "2023.10.5",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"browser-sync": "3.0.3",
"deepmerge": "4.3.1",
"dotenv": "16.4.7",
Expand Down

0 comments on commit 5348ec9

Please sign in to comment.