forked from RocketChat/Apps.Salesforce.LiveAgent
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 799 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 799 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
{
"devDependencies": {
"@rocket.chat/apps-engine": "WideChat/Rocket.Chat.Apps-engine.git#v1.31.0.widechat-2",
"@types/node": "^10.17.24",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.0.5",
"typescript": "^4.6.4",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^3.4.1"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"format": "prettier -w ./**/*.ts",
"format:check": "prettier --list-different ./**/*.ts"
},
"engines": {
"node": "12",
"npm": "<7"
}
}