-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
34 lines (34 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "groundcontrol",
"version": "2.3.4",
"description": "GroundControl push server API",
"devDependencies": {
"@types/node": "18.7.16",
"openapi-typescript": "^5.4.1",
"prettier": "2.0.5"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.21.1",
"express-rate-limit": "^6.6.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"
}
}