GroundControl/package.json
dependabot[bot] cd9f6dfd64 build(deps-dev): bump vitest from 1.6.1 to 3.2.6
Bumps [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) from 1.6.1 to 3.2.6.
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.2.6/packages/vitest)

---
updated-dependencies:
- dependency-name: vitest
  dependency-version: 3.2.6
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-08 22:27:15 +01:00

39 lines
1.1 KiB
JSON

{
"name": "groundcontrol",
"version": "3.1.1",
"description": "GroundControl push server API",
"devDependencies": {
"@types/node": "18.7.16",
"openapi-typescript": "^5.4.1",
"prettier": "2.0.5",
"vitest": "^3.2.6"
},
"dependencies": {
"body-parser": "^1.20.5",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.22.2",
"express-rate-limit": "^6.6.0",
"google-auth-library": "^9.15.0",
"helmet": "^5.1.0",
"jayson": "^3.6.6",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.9.8",
"node-fetch": "^3.3.2",
"reflect-metadata": "^0.1.10",
"ts-node": "10.9.1",
"typeorm": "0.3.14",
"typescript": "4.8.3"
},
"scripts": {
"lint": "npx prettier --write . && npx tsc",
"start": "ts-node src/index.ts",
"worker-blockprocessor": "ts-node src/worker-blockprocessor.ts",
"worker-processmempool": "ts-node src/worker-processmempool.ts",
"worker-sender": "ts-node src/worker-sender.ts",
"openapi": "npx openapi-typescript openapi.yaml --additional-properties true --export-type true --output src/openapi/api.ts",
"test": "vitest",
"test:run": "vitest run"
}
}