-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.03 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
{
"name": "nextjs-apollo-client",
"version": "0.3.2",
"author": "Frank Cooke",
"description": "Easily setup Next.js getServerSideProps/getStaticProps for Apollo GraphQL",
"keywords": [
"next.js",
"ssr",
"ssg",
"graphql",
"apollo",
"client",
"cache"
],
"repository": {
"type": "git",
"url": "git+https://github.com/platypusrex/nextjs-apollo-client.git"
},
"bugs": {
"url": "https://github.com/platypusrex/nextjs-apollo-client/issues"
},
"homepage": "https://github.com/platypusrex/nextjs-apollo-client/#readme",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/test.esm.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14.16.0"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"prepare": "tsdx build && husky install",
"size": "size-limit",
"analyze": "size-limit --why",
"check:types": "tsc --noEmit",
"release": "standard-version"
},
"size-limit": [
{
"path": "dist/test.cjs.production.min.js",
"limit": "15 KB"
},
{
"path": "dist/test.esm.js",
"limit": "15 KB"
}
],
"peerDependencies": {
"@apollo/client": ">=3.x",
"next": ">=10.x",
"react": ">=16.8.x"
},
"dependencies": {
"deepmerge": "^4.2.2",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@apollo/client": "^3.5.10",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react-hooks": "^8.0.0",
"@types/lodash.isequal": "^4.5.6",
"@types/react": "^18.0.6",
"cross-fetch": "^3.1.5",
"graphql": "^16.4.0",
"husky": "^7.0.0",
"next": "latest",
"react": "^18.0.0",
"react-test-renderer": "^18.1.0",
"size-limit": "^7.0.8",
"standard-version": "^9.3.2",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.6.3"
},
"license": "MIT"
}