-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.68 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
54
55
56
57
58
59
60
61
{
"name": "unthread-webhook-server",
"version": "1.1.6",
"description": "A reliable, production-ready Node.js server for processing Unthread.io webhooks with signature verification and smart platform handling.",
"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": ">=22.0.0 <27.0.0",
"bun": "1.3.13"
},
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage --coverage-reporter=text --coverage-reporter=lcov"
},
"dependencies": {
"@wgtechlabs/log-engine": "2.3.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-validator": "^7.3.2",
"redis": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"axios": "^1.15.1",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
},
"overrides": {
"picomatch": "4.0.4",
"body-parser": "2.3.0",
"qs": "6.15.3"
},
"packageManager": "bun@1.3.13"
}