-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.07 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
{
"name": "zammad-to-slack",
"version": "0.2.0",
"description": "Http proxy for anonymising Zammad webhook content and forward to Slack",
"license": "MIT",
"author": "Per Bergland <[email protected]>",
"contributors": [
"Martijn van der Ven <[email protected]>"
],
"main": "main.ts",
"scripts": {
"dev": "node --watch --watch-preserve-output --pending-deprecation --env-file-if-exists=.env -r ts-node/register main.ts",
"format": "prettier --write main.ts json-schema-to-ts.ts",
"start": "node --disable-warning=ExperimentalWarning --disable-warning=MODULE_TYPELESS_PACKAGE_JSON --experimental-strip-types main.ts"
},
"dependencies": {
"axios": "^1.7.9",
"basic-auth": "^2.0.1",
"fastify": "^5.2.1",
"fastify-raw-body": "^5.0.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"@types/basic-auth": "^1.1.8",
"@types/mustache": "^4.2.5",
"@types/node": "^22.10.5",
"json-schema-to-ts": "^3.1.1",
"prettier": "3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]"
}