GroundControl/package.json
Overtorment 440e37c19a
Create unit test and GitHub Actions (#294)
* Update CI workflow, dependencies, and add Vitest for testing

Co-authored-by: overtorment <overtorment@gmail.com>

* Remove Vitest UI and related configuration

Co-authored-by: overtorment <overtorment@gmail.com>

* Move string utils tests to dedicated tests directory

Co-authored-by: overtorment <overtorment@gmail.com>

* Update CI workflow to separate lint and test jobs

Co-authored-by: overtorment <overtorment@gmail.com>

* Rename vitest.config.ts to vitest.config.mts

Co-authored-by: overtorment <overtorment@gmail.com>

---------

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
2025-07-01 16:29:27 +01:00

39 lines
1.1 KiB
JSON

{
"name": "groundcontrol",
"version": "3.0.1",
"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.2",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.21.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"
}
}