-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.36 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.36 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "waf",
"description": "Web Application Firewall",
"module": "src/main.ts",
"scripts": {
"run": "ts-node src/main.ts",
"run:dev": "NODE_OPTIONS=\"--inspect=9230\" ts-node-dev --require tsconfig-paths/register --respawn src/main.ts",
"build": "node scripts/build.js",
"build:binary": "node scripts/build.js && sh .github/set_version.sh && pkg package.json --options=enable-source-maps --public",
"clean": "rimraf dist build coverage",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "eslint . --format stylish --fix",
"fix:prettier": "prettier --write \"{src,test,scripts}/**/*.ts\"",
"lint": "run-s lint:prettier lint:eslint",
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
"lint:prettier": "prettier --check \"{src,test,scripts}/**/*.ts\"",
"test": "jest",
"test:coverage": "jest --ci --coverage"
},
"author": "",
"license": "LGPL-3.0-or-later",
"dependencies": {
"@adobe/node-fetch-retry": "^2.2.0",
"@elementary-lab/logger": "^2.5.3",
"@elementary-lab/standards": "^3.0.0",
"@maxmind/geoip2-node": "^6.0.0",
"@sentry/node": "^9.11.0",
"body-parser": "^2.2.0",
"cookie-parser": "^1.4.7",
"express": "^4.21.2",
"express-http-auth": "^0.1.0",
"express-prom-bundle": "^8.0.0",
"express-requests-logger": "^4.0.1",
"http-proxy-middleware": "^3.0.5",
"ip": "^2.0.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"module-alias": "^2.2.3",
"node-fetch": "^3.3.2",
"prom-client": "^15.1.3",
"proper-lockfile": "^4.1.2",
"source-map-support": "^0.5.21",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/express-requests-logger": "^4.0.0",
"@types/ip": "^1.1.3",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.20",
"@types/node": "^22.13.5",
"@types/proper-lockfile": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.26.0",
"@typescript-eslint/parser": "^5.62.0",
"@yao-pkg/pkg": "^6.3.2",
"clean-css": "^5.3.3",
"esbuild": "^0.25.2",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^4.2.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"html-minifier-terser": "^7.2.0",
"javascript-obfuscator": "^4.1.1",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^10.0.0",
"node-mocks-http": "^1.16.2",
"prettier": "1.18.2",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5"
},
"overrides": {
"dtrace-provider": "https://github.com/CasperPas/node-dtrace-provider/archive/refs/heads/bugfix/esbuild-failed.zip"
},
"main": "dist/main.js",
"bin": {
"app": "dist/main.js"
},
"pkg": {
"assets": [
"dist/*.js.map",
"dist/**/*.js.map"
],
"targets": [
"node22-macos-x64",
"node22-windows-x64",
"node22-linux-x64"
],
"outputPath": "bin",
"public": true,
"debug": false,
"noBytecode": true
},
"engines": {
"node": ">=20.18.1"
}
}