-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 861 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 861 Bytes
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
{
"name": "gatekeeper",
"version": "0.1.0",
"description": "Gatekeeper API protection middleware with Redis-backed rate limiting and abuse detection.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "jest",
"lint": "eslint src --ext .ts",
"dev": "ts-node src/examples/express-app.ts"
},
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"ioredis": "^5.3.2",
"pino": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.5",
"@types/node": "^20.11.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"ioredis-mock": "^8.9.0"
}
}