-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.25 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
{
"name": "sonarqube-mattermost-bridge",
"version": "0.0.1",
"description": "proxy between sonarqube event webhook notification and mattermost incoming webhooks",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"start": "ts-node src/main.ts",
"dev": "ts-node-dev src/main.ts",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "jest --no-cache --verbose",
"clear-jest": "jest --clearCache"
},
"keywords": [],
"author": "Julian Bastow",
"license": "ISC",
"dependencies": {
"@fastify/swagger": "^7.4.1",
"fastify": "^4.5.0",
"fastify-plugin": "^4.0.0",
"fastify-webhook": "^4.0.1",
"got": "11.8.2",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"pino-pretty": "^8.1.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}