-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 KB
/
package.json
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
{
"name": "@ackee/kesha",
"description": "Caching utils based on ioredis and dataloaders",
"version": "0.4.0",
"author": "Pavel Švagr <[email protected]>",
"contributors": [
"Pavel Švagr <[email protected]>",
"Jaroslav Šmolík <[email protected]>",
"Michal Vlasák <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/kesha"
},
"main": "./dist/index.js",
"files": [
"dist/*"
],
"engines": {
"node": ">=18"
},
"license": "MIT",
"keywords": [
"cache",
"redis",
"dataloader",
"utils"
],
"scripts": {
"build": "tsc",
"test": "jest --colors --forceExit --runInBand",
"lint": "eslint '**/*.ts' -f codeframe"
},
"dependencies": {
"dataloader": "^2.2.2",
"ioredis": "^5.4.1",
"redis-dataloader": "^1.0.2"
},
"devDependencies": {
"@ackee/styleguide-backend-config": "^0.5.0",
"@types/jest": "^29.5.12",
"husky": "^4.2.3",
"jest": "^29.7.0",
"lint-staged": "^11.1.2",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
}
}