-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "@rocket.chat/http-router",
"version": "7.9.4",
"private": true,
"devDependencies": {
"@rocket.chat/eslint-config": "workspace:~",
"@rocket.chat/jest-presets": "workspace:^",
"@rocket.chat/tsconfig": "workspace:*",
"@types/express": "^4.17.23",
"@types/jest": "~30.0.0",
"@types/supertest": "^6.0.3",
"eslint": "~8.45.0",
"jest": "~30.0.5",
"supertest": "^7.1.1",
"ts-jest": "~29.4.0",
"typescript": "~5.9.2"
},
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "tsc --watch --preserveWatchOutput",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"testunit": "jest",
"test": "jest"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"@rocket.chat/core-typings": "workspace:^",
"@rocket.chat/logger": "workspace:^",
"@rocket.chat/rest-typings": "workspace:^",
"ajv": "^8.17.1",
"express": "^4.21.2",
"hono": "^4.6.19",
"qs": "^6.14.0"
},
"volta": {
"extends": "../../package.json"
}
}