-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.13 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "unthread-webhook-server",
"version": "1.1.0",
"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",
"pnpm": "9.15.4"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsc",
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"lint:security": "eslint . --ext .ts,.js",
"lint:ci": "eslint . --ext .ts,.js --max-warnings 1",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@wgtechlabs/log-engine": "2.3.1",
"dotenv": "^16.4.0",
"express": "^4.21.0",
"express-validator": "^7.3.1",
"global": "4.4.0",
"npm": "11.11.0",
"redis": "^4.7.0"
},
"devDependencies": {
"@eslint/js": "9.36.0",
"@types/express": "^5.0.2",
"@types/node": "^22.15.26",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"axios": "^1.13.6",
"eslint": "9.36.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-no-secrets": "2.2.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-security": "3.0.1",
"nodemon": "^3.1.14",
"only-allow": "1.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "3.2.4"
},
"packageManager": "pnpm@9.15.4"
}