forked from RocketChat/Apps.SpamMonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 770 Bytes
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
{
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rocket.chat/apps-engine": "^1.44.0",
"@types/node": "14.14.6",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"jiti": "^2.7.0",
"prettier": "^3.8.3",
"tslint": "^5.10.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.59.3"
},
"scripts": {
"typecheck": "tsc --noEmit --skipLibCheck",
"lint": "eslint .",
"lint-and-fix": "eslint . --fix",
"prettier-format": "prettier --config .prettierrc '**.ts' --write",
"prettier-check": "prettier --config .prettierrc '**.ts' --check"
},
"dependencies": {
"@rocket.chat/icons": "^0.47.0",
"@rocket.chat/ui-kit": "^1.0.0"
}
}