-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.85 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
{
"name": "frache",
"version": "1.0.1",
"type": "module",
"description": "Advanced and intelligent caching for Node.js using ioredis and queueing",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"build:clean": "rm -rf dist && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build:clean && npm run test:ci && npm run lint",
"prepack": "npm run build:clean",
"dev": "ts-node src/index.ts",
"example": "ts-node examples/express-controller.ts",
"example:dev": "ts-node --watch examples/express-controller.ts",
"example:basic": "ts-node examples/basic-usage.ts",
"example:advanced": "ts-node examples/advanced-patterns.ts",
"release:patch": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags"
},
"keywords": [
"cache",
"caching",
"redis",
"ioredis",
"queue",
"warmup",
"intelligent-caching",
"nodejs",
"typescript",
"performance",
"memory",
"ttl",
"compression",
"batch-operations",
"tag-invalidation",
"cache-aside",
"singleton"
],
"author": {
"name": "Frache Contributors",
"url": "https://github.com/b7r-dev/frache/graphs/contributors"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/b7r-dev/frache.git"
},
"bugs": {
"url": "https://github.com/b7r-dev/frache/issues"
},
"homepage": "https://github.com/b7r-dev/frache#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"ioredis": "^5.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"drizzle-orm": "^0.29.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"express": "^4.18.2",
"globals": "^16.3.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sqlite3": "^5.1.7",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"ioredis": "^5.0.0"
}
}