-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.35 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "with-next-apollo-tree-walker",
"description": "Apollo SSR data fetching on a per component basis with getDataFromTree without having to (pre)fetch in getInitialProps",
"version": "0.0.0-development",
"license": "MIT",
"typings": "dist/index.d.ts",
"source": "src/index.ts",
"main": "./dist/with-next-apollo-tree-walker.js",
"exports": "./dist/with-next-apollo-tree-walker.modern.js",
"module": "./dist/with-next-apollo-tree-walker.module.js",
"unpkg": "./dist/with-next-apollo-tree-walker.umd.js",
"homepage": "https://github.com/daphnesmit/with-next-apollo-tree-walker#readme",
"author": "Daphne Smit",
"sideEffects": false,
"keywords": [
"apollo",
"nextjs",
"next",
"getDataFromTree",
"ssr",
"fetch",
"tree-walker"
],
"contributors": [
{
"name": "Lennard Westerveld",
"email": "[email protected]"
},
{
"name": "Daphne Smit",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/daphnesmit/with-next-apollo-tree-walker"
},
"files": [
"dist"
],
"scripts": {
"build": "microbundle --jsx React.createElement",
"dev": "microbundle watch",
"build:types": "tsc --declaration --emitDeclarationOnly",
"lint": "npm run type-check",
"type-check": "tsc --noEmit"
},
"release": {
"branches": [
"main",
{
"name": "develop",
"prerelease": true
}
],
"plugins": [
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"@apollo/client": "3.*",
"react": ">=16",
"react-dom": ">=16",
"next": ">=10",
"graphql": ">=15"
},
"devDependencies": {
"@apollo/client": "^3.3.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"graphql": "^15.4.0",
"husky": "^4.3.8",
"microbundle": "^0.13.0",
"next": "^10.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typescript": "^4.1.3"
}
}