-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.38 KB
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
{
"name": "unthread-webhook-server",
"version": "1.0.0-beta.3",
"description": "A Node.js server application that receives webhook events from Unthread.io and queues them for processing.",
"license": "GPL-3.0",
"private": true,
"author": "WG Tech Labs <opensource@wgtechlabs.com> (https://wgtechlabs.com)",
"contributors": [
"Waren Gonzaga <opensource@warengonzaga.com> (https://warengonzaga.com)"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/wgtechlabs"
},
{
"type": "github",
"url": "https://github.com/sponsors/warengonzaga"
}
],
"main": "dist/app.js",
"engines": {
"node": ">=20.0.0",
"yarn": ">=1.22.0"
},
"scripts": {
"preinstall": "npx only-allow yarn",
"build": "tsc",
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@wgtechlabs/log-engine": "1.3.0",
"dotenv": "^16.4.0",
"express": "^4.21.0",
"express-validator": "^7.2.0",
"global": "4.4.0",
"npm": "11.4.2",
"redis": "^4.7.0"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/node": "^22.15.26",
"axios": "^1.7.0",
"nodemon": "^3.1.10",
"only-allow": "1.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"packageManager": "yarn@1.22.22"
}