forked from next-boost/next-boost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "next-boost",
"version": "0.8.6",
"description": "Add a cache layer for next.js SSR pages. Use stale-while-revalidate to boost the performance.",
"main": "dist/handler.js",
"bin": {
"next-boost": "dist/next/server.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "rm -rf dist && npm run build && npm run test",
"lint": "eslint src/*.ts test/*.ts",
"test": "jest"
},
"files": [
"dist",
"README.md"
],
"author": {
"name": "Rakuraku Jyo",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rjyo/next-boost.git"
},
"homepage": "https://github.com/rjyo/next-boost",
"license": "MIT",
"dependencies": {
"hybrid-disk-cache": "^0.1.6",
"multee": "^0.2.3"
},
"peerDependencies": {
"next": "^10.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.1",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"supertest": "^6.0.1",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"keywords": [
"next",
"nextjs",
"ssr",
"cache",
"stale-while-revalidate",
"react"
]
}