-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 2.4 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
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
77
78
79
80
81
82
83
84
85
{
"name": "@rocket.chat/rocket-chat-load-tester",
"version": "0.5.0",
"description": "",
"author": "Diego Sampaio <chinello@gmail.com>",
"homepage": "https://github.com/RocketChat/rocket.chat.load.tester",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/rocket.chat.load.tester.git"
},
"bugs": {
"url": "https://github.com/RocketChat/rocket.chat.load.tester/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "run-s .:build:clean .:build:esm .:build:cjs",
".:build:clean": "rimraf dist",
".:build:esm": "tsc -p tsconfig-esm.json",
".:build:cjs": "tsc -p tsconfig-cjs.json",
"lint": "eslint src",
"lint-fix": "eslint --fix src",
"lint-staged": "lint-staged",
"test": "jest --runInBand --passWithNoTests",
"dev": "nodemon src/index.ts",
"start": "ts-node ./src/index.ts"
},
"devDependencies": {
"@rocket.chat/eslint-config": "^0.5.2",
"@types/ejson": "^2.2.0",
"@types/jest": "^29.5.2",
"@types/koa": "^2.13.6",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-json": "^2.0.20",
"@types/koa-router": "^7.4.4",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "~5.60.0",
"@typescript-eslint/parser": "~5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "~8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "~4.2.1",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@koa/router": "^12.0.0",
"@rocket.chat/emitter": "^0.31",
"@rocket.chat/sdk": "next",
"@supercharge/promise-pool": "^2.4.0",
"@types/debug": "^4.1.8",
"@types/node": "^20.3.1",
"debug": "^4.3.4",
"ejson": "^2.2.3",
"form-data": "^4.0.0",
"koa": "^2.14.2",
"koa-better-error-handler": "^11.0.4",
"koa-bodyparser": "^4.4.1",
"koa-json": "^2.0.2",
"koa-onerror": "^4.2.0",
"koa-router": "^12.0.0",
"mongodb": "^5.6.0",
"node-fetch": "^2.6.7",
"prom-client": "^14.2.0",
"tslib": "^2.5.3"
},
"engines": {
"node": "20.3.0"
}
}