-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "dxclusterapi",
"version": "2.0.0",
"description": "Node.js REST API for DX Cluster Spots with POTA and SOTA Integration - Aggregates spots from multiple DX Clusters, POTA, and SOTA into a unified REST API with DXCC lookups",
"main": "index.js",
"author": "int2001",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/int2001/DXClusterAPI.git"
},
"keywords": [
"ham-radio",
"dx-cluster",
"pota",
"sota",
"spots",
"dxcc",
"amateur-radio",
"wavelog",
"rest-api"
],
"scripts": {
"start": "node index.js",
"start:docker": "MODE=docker node index.js",
"start:native": "MODE=native node index.js",
"dev": "node index.js"
},
"dependencies": {
"axios": "^1.13.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"prom-client": "^15.1.0",
"socket.io": "^4.8.1",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}