-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.77 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
{
"name": "adaptive-rate-control-engine",
"version": "1.0.0",
"description": "Adaptive Rate Control Engine (ARCE) - Distributed adaptive traffic control for API workloads.",
"main": "dist/apps/server/main.js",
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.json",
"dev": "tsx watch apps/server/main.ts",
"start": "node dist/apps/server/main.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "vitest run tests/unit tests/integration",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"smoke": "node scripts/smoke-test.mjs"
},
"keywords": [
"rate-limiter",
"redis",
"abuse-detection",
"adaptive-throttling",
"distributed-systems",
"traffic-control",
"express"
],
"author": "ARCE contributors",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.0.0",
"express": "^4.21.2",
"express-rate-limit": "^8.4.1",
"helmet": "^8.1.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"redis": "^5.1.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/node": "^24.0.1",
"@types/supertest": "^6.0.3",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.1.0",
"prettier": "^3.5.3",
"supertest": "^7.1.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vitest": "^3.2.4"
}
}