forked from ricokahler/next-plugin-query-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "next-plugin-query-cache",
"version": "2.0.0",
"description": "A build-time query cache for Next.js.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"semantic-release": "semantic-release",
"build": "./scripts/build",
"lint": "eslint src",
"prepare": "npm run build",
"format": "prettier . --write"
},
"author": {
"email": "[email protected]",
"name": "Rico Kahler",
"url": "https://github.com/ricokahler"
},
"repository": {
"type": "git",
"url": "https://github.com/ricokahler/next-plugin-query-cache.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-transform-runtime": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/jest": "26.0.24",
"@types/node": "14.18.21",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.10.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "27.2.4",
"next": "12.0.7",
"prettier": "2.7.1",
"rollup": "2.75.7",
"semantic-release": "17.4.7",
"typescript": "4.7.4"
},
"dependencies": {
"@types/express": "^4.17.11",
"@types/node-fetch": "^2.5.8",
"express": "^4.17.1",
"node-fetch": "^2.6.1"
},
"peerDependencies": {
"next": "^10.0.9 || ^11.0.0 || ^12.0.0"
},
"bin": {
"npqc-create-report": "./bin/npqc-create-report"
}
}