-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "@chat21/chat21-server",
"version": "0.2.55",
"description": "Chat21 AMQP/MQTT messages dispatcher",
"dependencies": {
"aedes": "^0.40.1",
"amqplib": "^0.10.3",
"app-root-path": "^3.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mocha": "^9.0.0",
"mongodb": "^3.5.6",
"mongoose": "^5.9.10",
"mqtt": "^4.3.7",
"prom-client": "^15.1.3",
"redis": "^3.1.2",
"rhea": "^1.0.20",
"uuid": "^8.3.2",
"websocket-stream": "^5.5.2"
},
"devDependencies": {
"@chat21/chat21-http-server": "^0.2.37",
"@types/amqplib": "^0.10.8",
"@types/chai": "^4.3.20",
"@types/express": "^5.0.6",
"@types/mocha": "^10.0.10",
"@types/mongodb": "^3.6.20",
"@types/node": "^25.6.0",
"@types/redis": "^2.8.32",
"@types/sinon": "^21.0.1",
"@types/uuid": "^10.0.0",
"axios": "^0.21.1",
"chai": "^4.5.0",
"loadtest": "^1.4.3",
"should": "^9.0.2",
"sinon": "^21.1.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/chatservermq.ts",
"start": "node dist/chatservermq.js",
"start:legacy": "node chatservermq.js",
"test": "mocha ./test/*.js --timeout 10000 --exit",
"test:unit": "mocha --require ts-node/register 'src/test/unit/**/*.test.ts' --timeout 10000",
"test:integration": "mocha --require ts-node/register 'src/test/integration/**/*.integration.test.ts' --timeout 30000 --exit",
"benchmarks": "node ./benchmarks/index.js"
},
"author": "",
"license": "MIT"
}