-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.35 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "checkdot-rpc-server",
"version": "2.19.22",
"description": "RPC framework, Node.js lib",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs && npm run types",
"example": " ts-node-dev src/example/example-gateway.ts",
"test": "jest",
"test-gui": "npx majestic",
"types": "tsc --declaration --emitDeclarationOnly",
"run-rabbitmq": "docker compose -f docker-rabbit-mq-compose.yml up"
},
"author": "cory@therms.io",
"license": "UNLICENSED",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.1.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^11",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11",
"@semantic-release/release-notes-generator": "^12",
"@types/amqp-connection-manager": "^3.4.0",
"@types/amqplib": "^0.10.1",
"@types/axios": "^0.14.0",
"@types/debug": "^4.1.7",
"@types/fast-json-stable-stringify": "^2.1.0",
"@types/jest": "^29.0.3",
"@types/koa": "^2.11.6",
"@types/koa__cors": "^4.0.0",
"@types/koa-bodyparser": "^4.3.3",
"@types/koa-proxy": "^1.0.2",
"@types/koa-static": "^4.0.2",
"@types/lodash-es": "^4.17.4",
"@types/node": "^20.5.7",
"@types/node-uuid": "^0.0.31",
"@types/ws": "^8.2.2",
"axios": "^1.5.0",
"debug": "^4.3.2",
"jest": "^29.0.3",
"jest-websocket-mock": "^2.2.1",
"prettier": "^3.0.3",
"rollup": "^4.1.5",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"semantic-release": "^22.0.5",
"semantic-release-slack-bot": "^4.0.1",
"ts-jest": "^29.0.1",
"ts-node-dev": "^2.0.0",
"tslib": "^2.3.1",
"typescript": "^5.0.3"
},
"dependencies": {
"@koa/cors": "^4.0.0",
"@types/koa-logger": "^3.1.1",
"ajv": "^8.6.2",
"amqp-connection-manager": "^4.1.1",
"amqplib": "^0.10.0",
"bson-objectid": "^2.0.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-proxy": "^1.0.0-alpha.3",
"koa-sendfile": "^3.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"mongodb": "^6.0.0",
"mongoose": "^7.5.0",
"node-uuid": "^1.4.8",
"ws": "^8.3.0"
}
}