-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"name": "apollo-next",
"version": "1.0.6",
"description": "Apollo HOC for Next.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"scripts": {
"build": "tsc",
"test": "tsc -p tsconfig.json --noemit"
},
"author": "vlkmx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vlkmx/apollo-next.git"
},
"bugs": {
"url": "https://github.com/vlkmx/apollo-next/issues"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"peerDependencies": {
"next": "^13.0.0 || ^14.0.0 || ^15.0.0",
"react": "^16.6.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@apollo/client": "^3.13.8",
"@types/node": "^22.15.21",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"graphql": "^16.11.0",
"next": "^15.1.8",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.8.3"
}
}