Some checks failed
Frontend (React) / build (push) Has been skipped
API Gateway (Java Spring Boot) / test (17) (push) Failing after 34s
Docker Build and Push / build-and-push (push) Failing after 39s
API Gateway (Java Spring Boot) / test (21) (push) Failing after 33s
API Gateway (Java Spring Boot) / build (push) Has been skipped
API Gateway (Java Spring Boot) / security (push) Has been skipped
LabFusion CI/CD Pipeline / api-gateway (push) Failing after 30s
API Docs (Node.js Express) / test (20) (push) Successful in 1m41s
API Docs (Node.js Express) / test (16) (push) Successful in 1m48s
API Docs (Node.js Express) / test (18) (push) Successful in 1m47s
Frontend (React) / test (latest) (push) Failing after 54s
LabFusion CI/CD Pipeline / service-adapters (push) Successful in 1m5s
LabFusion CI/CD Pipeline / frontend (push) Failing after 1m3s
Frontend (React) / lighthouse (push) Has been skipped
LabFusion CI/CD Pipeline / api-docs (push) Successful in 1m57s
LabFusion CI/CD Pipeline / integration-tests (push) Has been skipped
API Docs (Node.js Express) / build (push) Successful in 59s
Integration Tests / integration-tests (push) Failing after 1m31s
Integration Tests / performance-tests (push) Has been skipped
### Summary of Changes - Updated Docker images for PostgreSQL and Redis to use `latest` tags in `docker-compose.dev.yml` and `docker-compose.yml`. - Modified Node.js version in the frontend CI workflow to `latest` in `frontend.yml`. - Updated all dependencies in `package.json` and `package-lock.json` for the frontend and API docs services to `latest` versions. ### Expected Results - Ensured that the project uses the most recent versions of dependencies, improving security and performance. - Enhanced compatibility with the latest features and fixes from the respective libraries and services.
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "labfusion-api-docs",
|
|
"version": "1.0.0",
|
|
"description": "Unified API documentation service for LabFusion",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js",
|
|
"build": "echo 'No build step required for Node.js'",
|
|
"test": "jest",
|
|
"test:coverage": "jest --coverage",
|
|
"lint": "eslint . --ext .js",
|
|
"lint:fix": "eslint . --ext .js --fix",
|
|
"type-check": "echo 'No TypeScript in this service'"
|
|
},
|
|
"dependencies": {
|
|
"axios": "latest",
|
|
"cors": "latest",
|
|
"dotenv": "latest",
|
|
"express": "latest",
|
|
"swagger-jsdoc": "latest",
|
|
"swagger-ui-express": "latest"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "latest",
|
|
"eslint": "latest",
|
|
"eslint-config-standard": "latest",
|
|
"eslint-plugin-import": "latest",
|
|
"eslint-plugin-node": "latest",
|
|
"eslint-plugin-promise": "latest",
|
|
"jest": "latest",
|
|
"supertest": "latest"
|
|
},
|
|
"keywords": [
|
|
"api",
|
|
"documentation",
|
|
"swagger",
|
|
"openapi",
|
|
"labfusion"
|
|
],
|
|
"author": "LabFusion Team",
|
|
"license": "MIT"
|
|
}
|