https://github.com/armanasq/openslam

https://github.com/armanasq/openslam

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.0%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Basic Info
  • Host: GitHub
  • Owner: Armanasq
  • License: mit
  • Language: TypeScript
  • Default Branch: main
  • Size: 0 Bytes
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 1 year ago · Last pushed over 1 year ago
Metadata Files
Readme Contributing License

README.md

OpenSLAM Platform

[![Under Development](https://img.shields.io/badge/Status-Under%20Development-yellow.svg)](https://github.com/armanasq/openslam) [![License](https://img.shields.io/badge/License-MIT%202.0-red.svg)](LICENSE) [![Python](https://img.shields.io/badge/Python-3.8%2B-blue)](https://www.python.org/downloads/) [![React](https://img.shields.io/badge/React-18.0%2B-61dafb)](https://reactjs.org/) [![Flask](https://img.shields.io/badge/Flask-2.0%2B-black)](https://flask.palletsprojects.com/) **OpenSLAM is an open-source platform democratizing Simultaneous Localization and Mapping (SLAM) research and development.** ![image](https://github.com/user-attachments/assets/463e9d02-4258-4969-b70b-09e0e6ff4493) [Features](#features) [Getting Started](#getting-started) [Documentation](#documentation) [Contributing](#contributing) [Roadmap](#roadmap) * OpenSLAM is currently under active development. First release expected Q4 2024. Star the repository to stay updated!*

High-Level Architecture

```shell

React Client Flask Server SLAM Engine
(TypeScript) (Python) (Python)

            PostgreSQL              MinIO       
                        (Database)           (File Storage) 

```

Features

Core Capabilities

  • Algorithm Development Framework

    • Modular architecture for easy algorithm integration
    • Support for Visual SLAM, LiDAR SLAM, and Visual-Inertial SLAM
    • Comprehensive testing and benchmarking tools
  • Real-time Visualization

    • Interactive 3D trajectory visualization
    • Point cloud rendering and manipulation
    • Real-time performance metrics
  • Dataset Integration

    • Native KITTI dataset support
    • Custom dataset upload and management
    • Automated data preprocessing pipelines

Technical Features

  • Frontend

    • React-based responsive web interface
    • Real-time WebSocket data streaming
    • Interactive 3D visualizations using Three.js
    • TypeScript for enhanced type safety
  • Backend

    • Flask-based RESTful API
    • Celery for distributed task processing
    • PostgreSQL for structured data storage
    • MinIO for large dataset handling
  • SLAM Engine

    • Pure Python implementation
    • NumPy/SciPy optimization
    • CUDA acceleration support
    • Extensible algorithm interface ##

Dataset Processing

mermaid graph TD A[Upload Dataset] --> B[Validate Format] B --> C[Convert to Internal Format] C --> D[Store in MinIO] D --> E[Create Database Entry]

SLAM Execution

mermaid graph TD A[Configure Algorithm] --> B[Initialize Engine] B --> C[Process Frames] C --> D[Update Visualization] D --> E[Store Results]

Getting Started

Prerequisites

```bash

System Requirements

Python 3.8+ Node.js 16+ PostgreSQL 13+ CUDA 11+ (optional, for GPU acceleration)

Required Python packages

numpy>=1.21.0 scipy>=1.7.0 opencv-python>=4.5.0 pytorch>=1.9.0

Frontend dependencies

node>=16.0.0 npm>=7.0.0 ```

Installation

```bash

Clone repository

git clone https://github.com/armanasq/openslam.git cd openslam

Backend setup

python -m venv venv source venv/bin/activate pip install -r requirements.txt

Frontend setup

cd frontend npm install ```

Quick Start

```bash

Start backend server

cd backend flask run

Start frontend development server

cd frontend npm start

Access the platform

open http://localhost:3000 ```

Documentation

Architecture Overview

openslam/ frontend/ # React frontend application backend/ # Flask backend server slam_engine/ # Core SLAM implementation

Key Components

  1. Frontend Application

    • User interface and visualization
    • Real-time data streaming
    • Configuration management
  2. Backend Server

    • REST API endpoints
    • WebSocket server
    • Task queue management
  3. SLAM Engine

    • Algorithm implementations
    • Optimization routines
    • Data processing pipelines

Contributing

We welcome contributions! Please read our Contributing Guidelines before submitting PRs.

Development Setup

  1. Fork the repository
  2. Create a feature branch
  3. Make changes
  4. Submit a pull request

Code Standards

  • Python: PEP 8
  • TypeScript: ESLint configuration
  • Documentation: Google style docstrings

Roadmap

Phase 1: Foundation (Q3 2024)

  • [x] Core architecture design
  • [x] Basic frontend implementation
  • [x] Backend API structure
  • [ ] Basic SLAM pipeline
  • [ ] Initial documentation

Phase 2: Core Features (Q4 2024)

  • [ ] Visual SLAM implementation
  • [ ] LiDAR SLAM integration
  • [ ] Real-time visualization
  • [ ] Dataset management

Phase 3: Advanced Features (Q1 2025)

  • [ ] Multi-sensor fusion
  • [ ] Loop closure detection
  • [ ] Performance optimization
  • [ ] Community features

Technical Details

Supported Algorithms

  • ORB-SLAM3
  • VINS-Mono
  • LOAM
  • CartographerSLAM

Performance Metrics

  • Trajectory Accuracy
  • Computational Efficiency
  • Memory Usage
  • Loop Closure Success Rate

Integration Options

```python

Python API Example

from openslam import SLAMEngine

engine = SLAMEngine(config={ 'algorithm': 'orbslam3', 'sensortype': 'stereo' })

results = engine.processsequence(datasetpath) ```

Benchmarks

Detailed benchmarks will be available after first release

Security

Data Privacy

  • End-to-end encryption for data transfer
  • Secure dataset storage
  • Access control mechanisms

Authentication

  • JWT-based authentication
  • Role-based access control
  • OAuth2 integration (planned)

License

Copyright (c) 2024 OpenSLAM Team.

Licensed under the Apache License, Version 2.0. See LICENSE for details.

Acknowledgments

  • KITTI Dataset Team
  • Open-source SLAM community
  • Research institutions and contributors

Contact


**OpenSLAM is a community effort. Stars and contributions are welcome!** [Report Bug](https://github.com/armanasq/openslam/issues) [Request Feature](https://github.com/armanasq/openslam/issues)

Owner

  • Name: Arman Asgharpoor
  • Login: Armanasq
  • Kind: user
  • Company: University of Tehran

Avionics Engineer M.Sc. Space Engineering AI / Deep Learning

GitHub Events

Total
  • Push event: 12
  • Create event: 2
Last Year
  • Push event: 12
  • Create event: 2

Dependencies

frontend/node_modules/async/bower.json bower
frontend/node_modules/sprintf-js/bower.json bower
frontend/node_modules/tryer/bower.json bower
frontend/node_modules/language-subtag-registry/data/json/meta.json cpan
docker-compose.yml docker
frontend/node_modules/@surma/rollup-plugin-off-main-thread/Dockerfile docker
  • selenium/node-chrome latest build
frontend/node_modules/jsonpath/Dockerfile docker
  • node 0.11-onbuild build
frontend/node_modules/electron-to-chromium/versions.json meteor
frontend/node_modules/@alloc/quick-lru/package.json npm
  • ava ^2.0.0 development
  • coveralls ^3.0.3 development
  • nyc ^15.0.0 development
  • tsd ^0.11.0 development
  • xo ^0.26.0 development
frontend/node_modules/@ampproject/remapping/package.json npm
  • @rollup/plugin-typescript 8.3.2 development
  • @types/jest 27.4.1 development
  • @typescript-eslint/eslint-plugin 5.20.0 development
  • @typescript-eslint/parser 5.20.0 development
  • eslint 8.14.0 development
  • eslint-config-prettier 8.5.0 development
  • jest 27.5.1 development
  • jest-config 27.5.1 development
  • npm-run-all 4.1.5 development
  • prettier 2.6.2 development
  • rollup 2.70.2 development
  • ts-jest 27.1.4 development
  • tslib 2.4.0 development
  • typescript 4.6.3 development
  • @jridgewell/gen-mapping ^0.3.5
  • @jridgewell/trace-mapping ^0.3.24
frontend/node_modules/@babel/code-frame/package.json npm
  • import-meta-resolve ^4.1.0 development
  • strip-ansi ^4.0.0 development
  • @babel/helper-validator-identifier ^7.25.9
  • js-tokens ^4.0.0
  • picocolors ^1.0.0
frontend/node_modules/@babel/compat-data/package.json npm
  • @mdn/browser-compat-data ^5.5.36 development
  • core-js-compat ^3.37.1 development
  • electron-to-chromium ^1.4.816 development
frontend/node_modules/@babel/core/node_modules/semver/package.json npm
  • @npmcli/template-oss 4.17.0 development
  • tap ^12.7.0 development
frontend/node_modules/@babel/core/package.json npm
  • @babel/helper-transform-fixture-test-runner ^7.26.0 development
  • @babel/plugin-syntax-flow ^7.26.0 development
  • @babel/plugin-transform-flow-strip-types ^7.25.9 development
  • @babel/plugin-transform-modules-commonjs ^7.25.9 development
  • @babel/preset-env ^7.26.0 development
  • @babel/preset-typescript ^7.26.0 development
  • @jridgewell/trace-mapping ^0.3.25 development
  • @types/convert-source-map ^2.0.0 development
  • @types/debug ^4.1.0 development
  • @types/gensync ^1.0.0 development
  • @types/resolve ^1.3.2 development
  • @types/semver ^5.4.0 development
  • rimraf ^3.0.0 development
  • ts-node ^11.0.0-beta.1 development
  • @ampproject/remapping ^2.2.0
  • @babel/code-frame ^7.26.0
  • @babel/generator ^7.26.0
  • @babel/helper-compilation-targets ^7.25.9
  • @babel/helper-module-transforms ^7.26.0
  • @babel/helpers ^7.26.0
  • @babel/parser ^7.26.0
  • @babel/template ^7.25.9
  • @babel/traverse ^7.25.9
  • @babel/types ^7.26.0
  • convert-source-map ^2.0.0
  • debug ^4.1.0
  • gensync ^1.0.0-beta.2
  • json5 ^2.2.3
  • semver ^6.3.1
frontend/node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys/package.json npm
  • eslint ^4.7.2 development
  • eslint-config-eslint ^4.0.0 development
  • eslint-release ^1.0.0 development
  • mocha ^3.5.3 development
  • nyc ^11.2.1 development
  • opener ^1.4.3 development
frontend/node_modules/@babel/eslint-parser/node_modules/semver/package.json npm
  • @npmcli/template-oss 4.17.0 development
  • tap ^12.7.0 development
frontend/node_modules/@babel/eslint-parser/package.json npm
  • @babel/core ^7.25.9 development
  • @types/eslint ^8.56.2 development
  • @types/estree ^1.0.5 development
  • @typescript-eslint/scope-manager ^6.19.0 development
  • dedent ^1.5.3 development
  • eslint ^9.7.0 development
  • @nicolo-ribaudo/eslint-scope-5-internals 5.1.1-v1
  • eslint-visitor-keys ^2.1.0
  • semver ^6.3.1
frontend/node_modules/@babel/generator/package.json npm
  • @babel/core ^7.26.0 development
  • @babel/helper-fixtures ^7.26.0 development
  • @babel/plugin-transform-typescript ^7.25.9 development
  • @jridgewell/sourcemap-codec ^1.4.15 development
  • @types/jsesc ^2.5.0 development
  • charcodes ^0.2.0 development
  • @babel/parser ^7.26.2
  • @babel/types ^7.26.0
  • @jridgewell/gen-mapping ^0.3.5
  • @jridgewell/trace-mapping ^0.3.25
  • jsesc ^3.0.2
frontend/node_modules/@babel/helper-annotate-as-pure/package.json npm
  • @babel/traverse ^7.25.9 development
  • @babel/types ^7.25.9
frontend/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/package.json npm
  • @babel/traverse ^7.25.9
  • @babel/types ^7.25.9
frontend/node_modules/@babel/helper-compilation-targets/node_modules/semver/package.json npm
  • @npmcli/template-oss 4.17.0 development
  • tap ^12.7.0 development
frontend/node_modules/@babel/helper-compilation-targets/package.json npm
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @types/lru-cache ^5.1.1 development
  • @types/semver ^5.5.0 development
  • @babel/compat-data ^7.25.9
  • @babel/helper-validator-option ^7.25.9
  • browserslist ^4.24.0
  • lru-cache ^5.1.1
  • semver ^6.3.1
frontend/node_modules/@babel/helper-create-class-features-plugin/node_modules/semver/package.json npm
  • @npmcli/template-oss 4.17.0 development
  • tap ^12.7.0 development
frontend/node_modules/@babel/helper-create-class-features-plugin/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/preset-env ^7.25.9 development
  • @types/charcodes ^0.2.0 development
  • charcodes ^0.2.0 development
  • @babel/helper-annotate-as-pure ^7.25.9
  • @babel/helper-member-expression-to-functions ^7.25.9
  • @babel/helper-optimise-call-expression ^7.25.9
  • @babel/helper-replace-supers ^7.25.9
  • @babel/helper-skip-transparent-expression-wrappers ^7.25.9
  • @babel/traverse ^7.25.9
  • semver ^6.3.1
frontend/node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver/package.json npm
  • @npmcli/template-oss 4.17.0 development
  • tap ^12.7.0 development
frontend/node_modules/@babel/helper-create-regexp-features-plugin/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-annotate-as-pure ^7.25.9
  • regexpu-core ^6.1.1
  • semver ^6.3.1
frontend/node_modules/@babel/helper-define-polyfill-provider/package.json npm
  • @babel/cli ^7.22.6 development
  • @babel/core ^7.22.6 development
  • @babel/generator ^7.22.5 development
  • @babel/plugin-transform-modules-commonjs ^7.22.5 development
  • @babel/traverse ^7.22.6 development
  • babel-loader ^8.1.0 development
  • rollup ^2.3.2 development
  • rollup-plugin-babel ^4.4.0 development
  • strip-ansi ^6.0.0 development
  • webpack ^4.42.1 development
  • webpack-cli ^3.3.11 development
  • @babel/helper-compilation-targets ^7.22.6
  • @babel/helper-plugin-utils ^7.22.5
  • debug ^4.1.1
  • lodash.debounce ^4.0.8
  • resolve ^1.14.2
frontend/node_modules/@babel/helper-member-expression-to-functions/package.json npm
  • @babel/traverse ^7.25.9
  • @babel/types ^7.25.9
frontend/node_modules/@babel/helper-module-imports/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/traverse ^7.25.9
  • @babel/types ^7.25.9
frontend/node_modules/@babel/helper-module-transforms/package.json npm
  • @babel/core ^7.26.0 development
  • @babel/helper-module-imports ^7.25.9
  • @babel/helper-validator-identifier ^7.25.9
  • @babel/traverse ^7.25.9
frontend/node_modules/@babel/helper-optimise-call-expression/package.json npm
  • @babel/generator ^7.25.9 development
  • @babel/parser ^7.25.9 development
  • @babel/types ^7.25.9
frontend/node_modules/@babel/helper-plugin-utils/package.json npm
  • @babel/core ^7.25.9 development
frontend/node_modules/@babel/helper-remap-async-to-generator/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-annotate-as-pure ^7.25.9
  • @babel/helper-wrap-function ^7.25.9
  • @babel/traverse ^7.25.9
frontend/node_modules/@babel/helper-replace-supers/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-member-expression-to-functions ^7.25.9
  • @babel/helper-optimise-call-expression ^7.25.9
  • @babel/traverse ^7.25.9
frontend/node_modules/@babel/helper-simple-access/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/traverse ^7.25.9
  • @babel/types ^7.25.9
frontend/node_modules/@babel/helper-skip-transparent-expression-wrappers/package.json npm
  • @babel/traverse ^7.25.9
  • @babel/types ^7.25.9
frontend/node_modules/@babel/helper-string-parser/package.json npm
  • charcodes ^0.2.0 development
frontend/node_modules/@babel/helper-validator-identifier/package.json npm
  • @unicode/unicode-16.0.0 ^1.0.0 development
  • charcodes ^0.2.0 development
frontend/node_modules/@babel/helper-validator-option/package.json npm
frontend/node_modules/@babel/helper-wrap-function/package.json npm
  • @babel/template ^7.25.9
  • @babel/traverse ^7.25.9
  • @babel/types ^7.25.9
frontend/node_modules/@babel/helpers/package.json npm
  • @babel/generator ^7.26.0 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/parser ^7.26.0 development
  • regenerator-runtime ^0.14.0 development
  • @babel/template ^7.25.9
  • @babel/types ^7.26.0
frontend/node_modules/@babel/parser/package.json npm
  • @babel/code-frame ^7.26.2 development
  • @babel/helper-check-duplicate-nodes ^7.25.9 development
  • @babel/helper-fixtures ^7.26.0 development
  • @babel/helper-string-parser ^7.25.9 development
  • @babel/helper-validator-identifier ^7.25.9 development
  • charcodes ^0.2.0 development
  • @babel/types ^7.26.0
frontend/node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/traverse ^7.25.9
frontend/node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/traverse ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/traverse ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/traverse ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/helper-skip-transparent-expression-wrappers ^7.25.9
  • @babel/plugin-transform-optional-chaining ^7.25.9
frontend/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/traverse ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/traverse ^7.25.9
frontend/node_modules/@babel/plugin-proposal-class-properties/package.json npm
  • @babel/core ^7.18.6 development
  • @babel/helper-plugin-test-runner ^7.18.6 development
  • @babel/helper-create-class-features-plugin ^7.18.6
  • @babel/helper-plugin-utils ^7.18.6
frontend/node_modules/@babel/plugin-proposal-decorators/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/traverse ^7.25.9 development
  • array.prototype.concat ^1.0.2 development
  • babel-plugin-polyfill-es-shims ^0.10.4 development
  • object.getownpropertydescriptors ^2.1.1 development
  • @babel/helper-create-class-features-plugin ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/plugin-syntax-decorators ^7.25.9
frontend/node_modules/@babel/plugin-proposal-nullish-coalescing-operator/package.json npm
  • @babel/core ^7.18.6 development
  • @babel/helper-plugin-test-runner ^7.18.6 development
  • @babel/helper-plugin-utils ^7.18.6
  • @babel/plugin-syntax-nullish-coalescing-operator ^7.8.3
frontend/node_modules/@babel/plugin-proposal-numeric-separator/package.json npm
  • @babel/core ^7.18.6 development
  • @babel/helper-plugin-test-runner ^7.18.6 development
  • @babel/traverse ^7.18.6 development
  • @babel/types ^7.18.6 development
  • @babel/helper-plugin-utils ^7.18.6
  • @babel/plugin-syntax-numeric-separator ^7.10.4
frontend/node_modules/@babel/plugin-proposal-optional-chaining/package.json npm
  • @babel/core ^7.21.0 development
  • @babel/helper-plugin-test-runner ^7.18.6 development
  • @babel/plugin-transform-block-scoping ^7.21.0 development
  • @babel/traverse ^7.21.0 development
  • @babel/helper-plugin-utils ^7.20.2
  • @babel/helper-skip-transparent-expression-wrappers ^7.20.0
  • @babel/plugin-syntax-optional-chaining ^7.8.3
frontend/node_modules/@babel/plugin-proposal-private-methods/package.json npm
  • @babel/core ^7.18.6 development
  • @babel/helper-plugin-test-runner ^7.18.6 development
  • @babel/helper-create-class-features-plugin ^7.18.6
  • @babel/helper-plugin-utils ^7.18.6
frontend/node_modules/@babel/plugin-proposal-private-property-in-object/package.json npm
  • @babel/core ^7.21.0 development
  • @babel/helper-plugin-test-runner ^7.18.6 development
  • @babel/helper-annotate-as-pure ^7.18.6
  • @babel/helper-create-class-features-plugin ^7.21.0
  • @babel/helper-plugin-utils ^7.20.2
  • @babel/plugin-syntax-private-property-in-object ^7.14.5
frontend/node_modules/@babel/plugin-syntax-async-generators/package.json npm
  • @babel/core ^7.8.0 development
  • @babel/helper-plugin-utils ^7.8.0
frontend/node_modules/@babel/plugin-syntax-bigint/package.json npm
  • @babel/core ^7.8.0 development
  • @babel/helper-plugin-utils ^7.8.0
frontend/node_modules/@babel/plugin-syntax-class-properties/package.json npm
  • @babel/core 7.12.13 development
  • @babel/helper-plugin-utils ^7.12.13
frontend/node_modules/@babel/plugin-syntax-class-static-block/package.json npm
  • @babel/helper-plugin-utils ^7.14.5
frontend/node_modules/@babel/plugin-syntax-decorators/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-syntax-flow/package.json npm
  • @babel/core ^7.26.0 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-syntax-import-assertions/package.json npm
  • @babel/core ^7.26.0 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-syntax-import-attributes/package.json npm
  • @babel/core ^7.26.0 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-syntax-import-meta/package.json npm
  • @babel/core ^7.10.4 development
  • @babel/helper-plugin-utils ^7.10.4
frontend/node_modules/@babel/plugin-syntax-json-strings/package.json npm
  • @babel/core ^7.8.0 development
  • @babel/helper-plugin-utils ^7.8.0
frontend/node_modules/@babel/plugin-syntax-jsx/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-syntax-logical-assignment-operators/package.json npm
  • @babel/core ^7.10.4 development
  • @babel/helper-plugin-utils ^7.10.4
frontend/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/package.json npm
  • @babel/core ^7.8.0 development
  • @babel/helper-plugin-utils ^7.8.0
frontend/node_modules/@babel/plugin-syntax-numeric-separator/package.json npm
  • @babel/core ^7.10.4 development
  • @babel/helper-plugin-utils ^7.10.4
frontend/node_modules/@babel/plugin-syntax-object-rest-spread/package.json npm
  • @babel/core ^7.8.0 development
  • @babel/helper-plugin-utils ^7.8.0
frontend/node_modules/@babel/plugin-syntax-optional-catch-binding/package.json npm
  • @babel/core ^7.8.0 development
  • @babel/helper-plugin-utils ^7.8.0
frontend/node_modules/@babel/plugin-syntax-optional-chaining/package.json npm
  • @babel/core ^7.8.0 development
  • @babel/helper-plugin-utils ^7.8.0
frontend/node_modules/@babel/plugin-syntax-private-property-in-object/package.json npm
  • @babel/helper-plugin-utils ^7.14.5
frontend/node_modules/@babel/plugin-syntax-top-level-await/package.json npm
  • @babel/core 7.14.5 development
  • @babel/helper-plugin-utils ^7.14.5
frontend/node_modules/@babel/plugin-syntax-typescript/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-syntax-unicode-sets-regex/package.json npm
  • @babel/core ^7.18.6 development
  • @babel/helper-plugin-test-runner ^7.18.6 development
  • @babel/helper-create-regexp-features-plugin ^7.18.6
  • @babel/helper-plugin-utils ^7.18.6
frontend/node_modules/@babel/plugin-transform-arrow-functions/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/traverse ^7.25.9 development
  • @babel/types ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-async-generator-functions/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • babel-plugin-polyfill-corejs3 ^0.10.6 development
  • core-js-pure ^3.30.2 development
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/helper-remap-async-to-generator ^7.25.9
  • @babel/traverse ^7.25.9
frontend/node_modules/@babel/plugin-transform-async-to-generator/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-module-imports ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/helper-remap-async-to-generator ^7.25.9
frontend/node_modules/@babel/plugin-transform-block-scoped-functions/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-block-scoping/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/traverse ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-class-properties/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-create-class-features-plugin ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-class-static-block/package.json npm
  • @babel/core ^7.26.0 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/plugin-external-helpers ^7.25.9 development
  • @babel/plugin-transform-class-properties ^7.25.9 development
  • @babel/traverse ^7.25.9 development
  • @babel/types ^7.26.0 development
  • @babel/helper-create-class-features-plugin ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-classes/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-annotate-as-pure ^7.25.9
  • @babel/helper-compilation-targets ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/helper-replace-supers ^7.25.9
  • @babel/traverse ^7.25.9
  • globals ^11.1.0
frontend/node_modules/@babel/plugin-transform-computed-properties/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/template ^7.25.9
frontend/node_modules/@babel/plugin-transform-destructuring/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/traverse ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-dotall-regex/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-create-regexp-features-plugin ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-duplicate-keys/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • core-js ^3.30.2 development
  • @babel/helper-create-regexp-features-plugin ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-dynamic-import/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-exponentiation-operator/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-builder-binary-assignment-operator-visitor ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-export-namespace-from/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-flow-strip-types/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/plugin-syntax-flow ^7.25.9
frontend/node_modules/@babel/plugin-transform-for-of/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/helper-skip-transparent-expression-wrappers ^7.25.9
frontend/node_modules/@babel/plugin-transform-function-name/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-compilation-targets ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/traverse ^7.25.9
frontend/node_modules/@babel/plugin-transform-json-strings/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-literals/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-logical-assignment-operators/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/plugin-transform-nullish-coalescing-operator ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-member-expression-literals/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-modules-amd/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/plugin-external-helpers ^7.25.9 development
  • @babel/helper-module-transforms ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
frontend/node_modules/@babel/plugin-transform-modules-commonjs/package.json npm
  • @babel/core ^7.25.9 development
  • @babel/helper-plugin-test-runner ^7.25.9 development
  • @babel/plugin-external-helpers ^7.25.9 development
  • @babel/helper-module-transforms ^7.25.9
  • @babel/helper-plugin-utils ^7.25.9
  • @babel/helper-simple-access ^7.25.9