-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.48 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "webhook-api",
"version": "1.1.2",
"description": "Webhook API for recieving Trello requests",
"main": "index.js",
"repository": "https://github.com/trello-talk/WebhookAPI",
"author": {
"name": "Snazzah",
"email": "[email protected]",
"url": "https://snazzah.com/"
},
"private": true,
"license": "MIT",
"scripts": {
"start": "cd dist && node index.js",
"build": "tsc",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"init": "yarn && rimraf dist && tsc && devScript --copyOnly",
"dev": "devScript"
},
"dependencies": {
"@fastify/helmet": "11.1.1",
"@influxdata/influxdb-client": "1.33.2",
"@sentry/integrations": "7.92.0",
"@sentry/node": "7.92.0",
"@sentry/tracing": "7.92.0",
"ajv": "8.12.0",
"axios": "0.27.2",
"cat-loggr": "1.2.2",
"cron": "3.1.6",
"dotenv": "16.3.1",
"eventemitter3": "5.0.1",
"fastify": "4.24.3",
"ioredis": "5.3.2",
"lodash": "4.17.21",
"moment": "2.30.1",
"mustache": "4.2.0",
"pg": "8.11.3",
"sequelize": "6.35.2",
"tslib": "2.6.2"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/connect": "3.4.38",
"@types/cron": "2.0.1",
"@types/lodash": "4.14.202",
"@types/mustache": "4.2.5",
"@types/node": "20.5.9",
"eslint": "8.56.0",
"eslint-config-snazzah": "1.2.1",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"rimraf": "5.0.5",
"ts-devscript": "3.0.7",
"typescript": "5.3.3"
}
}