-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1003 Bytes
/
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
{
"name": "next-redis-cache",
"version": "1.0.3",
"description": "A package to manage redis caching of genrated pages through next.js .",
"main": "dist/index.js",
"scripts": {
"build": "npx babel src --out-dir dist",
"start": "npx babel src --watch --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knovator/next-redis-cache.git"
},
"keywords": [
"redis",
"next-redis",
"redis-cache",
"next-redis-cache",
"nextje-cache"
],
"author": "Rajnish Katharotiya",
"license": "MIT",
"bugs": {
"url": "https://github.com/knovator/next-redis-cache/issues"
},
"homepage": "https://github.com/knovator/next-redis-cache#readme",
"dependencies": {
"path-to-regexp": "^6.2.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5"
}
}