forked from lifeiscontent/storybook-addon-apollo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.6 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"author": {
"email": "[email protected]",
"name": "Aaron Reisman",
"url": "https://lifeiscontent.net/"
},
"dependencies": {
"@storybook/components": "^7.0.0",
"tslib": "2.5.3"
},
"description": "Use Apollo Client in your Storybook stories.",
"devDependencies": {
"@types/react": "^18.2.14",
"@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"graphql": "^16.7.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"react": "^18.2.0"
},
"engines": {
"node": ">=10"
},
"keywords": [
"storybook-addon",
"data-state",
"apollo",
"popular",
"graphql"
],
"license": "MIT",
"name": "storybook-addon-apollo-client",
"peerDependencies": {
"@storybook/addons": "^7.0.0",
"graphql": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lifeiscontent/storybook-addon-apollo-client.git"
},
"scripts": {
"build": "tsc --build tsconfig.mjs.json && tsc --build tsconfig.cjs.json",
"lint": "eslint .",
"prepare": "husky install && npm run build"
},
"storybook": {
"displayName": "Apollo Client",
"icon": "https://pbs.twimg.com/profile_images/1314271818027499522/0WAECoWU_400x400.png"
},
"version": "5.0.0",
"exports": {
".": {
"require": {
"default": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts"
},
"import": {
"default": "./lib/mjs/index.js",
"types": "./lib/mjs/index.d.ts"
}
},
"./manager": {
"require": {
"default": "./lib/cjs/manager.js",
"types": "./lib/cjs/manager.d.ts"
},
"import": {
"default": "./lib/mjs/manager.js",
"types": "./lib/mjs/manager.d.ts"
}
},
"./preview": {
"require": {
"default": "./lib/cjs/preview.js",
"types": "./lib/cjs/preview.d.ts"
},
"import": {
"default": "./lib/mjs/preview.js",
"types": "./lib/mjs/preview.d.ts"
}
},
"./register": {
"require": {
"default": "./lib/cjs/manager.js",
"types": "./lib/cjs/manager.d.ts"
},
"import": {
"default": "./lib/mjs/manager.js",
"types": "./lib/mjs/manager.d.ts"
}
},
"./package.json": "./package.json"
},
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"types": "lib/cjs/index.d.ts",
"files": [
"lib/**/*",
"README.md"
]
}