GroundControl/package.json
dependabot[bot] 67f7550587 build(deps): bump qs, body-parser and express
Bumps [qs](https://github.com/ljharb/qs) to 6.14.1 and updates ancestor dependencies [qs](https://github.com/ljharb/qs), [body-parser](https://github.com/expressjs/body-parser) and [express](https://github.com/expressjs/express). These dependencies need to be updated together.


Updates `qs` from 6.13.0 to 6.14.1
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ljharb/qs/compare/v6.13.0...v6.14.1)

Updates `body-parser` from 1.20.3 to 1.20.4
- [Release notes](https://github.com/expressjs/body-parser/releases)
- [Changelog](https://github.com/expressjs/body-parser/blob/master/HISTORY.md)
- [Commits](https://github.com/expressjs/body-parser/compare/1.20.3...1.20.4)

Updates `express` from 4.21.1 to 4.22.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/v4.22.1/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.21.1...v4.22.1)

---
updated-dependencies:
- dependency-name: qs
  dependency-version: 6.14.1
  dependency-type: indirect
- dependency-name: body-parser
  dependency-version: 1.20.4
  dependency-type: direct:production
- dependency-name: express
  dependency-version: 4.22.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-30 10:42:29 +00:00

39 lines
1.1 KiB
JSON

{
"name": "groundcontrol",
"version": "3.1.0",
"description": "GroundControl push server API",
"devDependencies": {
"@types/node": "18.7.16",
"openapi-typescript": "^5.4.1",
"prettier": "2.0.5",
"vitest": "^1.0.0"
},
"dependencies": {
"body-parser": "^1.20.4",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.22.1",
"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"
}
}