forked from Aengz/payload-redis-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.5 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@aengz/payload-redis-cache",
"description": "Redis cache plugin for Payload CMS",
"engines": {
"node": ">=14",
"yarn": ">=1.22 <2"
},
"author": {
"email": "[email protected]",
"name": "AEngz"
},
"maintainers": [
{
"email": "[email protected]",
"name": "AEngz"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Aengz/payload-redis-cache"
},
"keywords": [
"payload",
"plugin",
"cache",
"redis"
],
"version": "1.0.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"dev": "cd ./dev && yarn dev",
"build": "rm -Rf ./dist && tsc",
"dev:build": "yarn build && yarn link && cd dev && yarn link --force @aengz/payload-redis-cache",
"build:publish": "yarn build && yarn publish",
"test": "jest"
},
"peerDependencies": {
"cookie": "0.5.0",
"jwt-decode": "^3.1.2",
"payload": "^1.5.9",
"pino": "^8.8.0",
"redis": "^4.5.1"
},
"files": [
"dist"
],
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/express": "^4.17.9",
"@types/jest": "^29.2.4",
"cookie": "0.5.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jest": "^29.3.1",
"jwt-decode": "^3.1.2",
"nodemon": "^2.0.6",
"payload": "^1.6.3",
"pino": "^8.8.0",
"pino-pretty": "^9.1.1",
"redis": "^4.5.1",
"ts-jest": "^29.0.3",
"ts-node": "^9.1.1",
"typescript": "^4.9.4"
}
}