forked from next-boost/next-boost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.86 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
70
71
72
73
74
75
76
77
{
"name": "@next-boost/next-boost",
"version": "0.15.2",
"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": "rm -rf dist && swc src --out-dir dist",
"prepublishOnly": "yarn tsc && yarn test",
"lint": "eslint src/*.ts test/*.ts",
"test": "jest --testPathIgnorePatterns redis"
},
"files": [
"dist",
"README.md"
],
"author": {
"name": "Rakuraku Jyo",
"email": "jyo.rakuraku@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:next-boost/next-boost.git"
},
"homepage": "https://github.com/next-boost/next-boost",
"license": "MIT",
"dependencies": {
"http-graceful-shutdown": "^3.1.7",
"multee": "^0.2.3"
},
"peerDependencies": {
"next": "^12.0.0"
},
"devDependencies": {
"@next-boost/hybrid-disk-cache": "^0.3.0",
"@next-boost/redis-cache": "^0.4.0",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.197",
"@swc/jest": "^0.2.21",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.40",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"dotenv": "^16.0.1",
"eslint": "^8.17.0",
"jest": "^28.1.0",
"regenerator-runtime": "^0.13.9",
"supertest": "^6.2.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"keywords": [
"next",
"nextjs",
"ssr",
"cache",
"stale-while-revalidate",
"react"
],
"publishConfig": {
"access": "public"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "never",
"endOfLine": "lf",
"tabWidth": 2,
"arrowParens": "avoid",
"printWidth": 100
}
}