GroundControl/package.json
2022-09-23 10:32:36 +00:00

35 lines
1.0 KiB
JSON

{
"name": "groundcontrol",
"version": "2.1.0",
"description": "GroundControl push server API",
"devDependencies": {
"prettier": "2.0.5"
},
"dependencies": {
"@types/node": "18.7.14",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"dtsgenerator": "^3.16.1",
"express": "^4.17.3",
"express-rate-limit": "^6.0.5",
"frisbee": "^3.1.4",
"helmet": "^5.1.0",
"jayson": "^3.6.6",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.10",
"ts-node": "10.9.1",
"typeorm": "0.3.9",
"typescript": "4.8.2"
},
"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"
}
}