-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
30 lines (30 loc) · 1.01 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
{
"devDependencies": {
"@rocket.chat/apps-engine": "^1.32.0",
"@types/node": "18.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-config-xo": "^0.41.0",
"eslint-config-xo-typescript": "^0.52.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.7.1",
"tslint": "^6.1.3",
"typescript": ">=4.4"
},
"scripts": {
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"dependencies": {
"@typescript-eslint/parser": "^5.37.0"
},
"license": "SEE LICENSE IN <filename>"
}