-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.66 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
{
"name": "@focus-reactive/storybook-graphql-kit",
"description": "Storybook addon for writing stories in GraphQL",
"version": "1.0.2",
"private": false,
"main": "dist/decorator.js",
"dependencies": {
"@material-ui/core": "^4.5.0",
"@material-ui/icons": "^4.4.3",
"@storybook/addon-devkit": "^1.4.0",
"graphql-request": "^1.8.2",
"react-json-view": "^1.21.1"
},
"scripts": {
"start": "start-storybook -p 9009 -s public --ci",
"dev": "nodemon --exec yarn prepare",
"test": "react-scripts test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build-storybook": "build-storybook -s public",
"deploy": "storybook-to-ghpages",
"prestart": "relative-deps",
"prepare": "package-prepare"
},
"packagePrepare": {
"src": "addon"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.12.17",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-links": "^6.1.18",
"@storybook/addons": "^6.1.18",
"@storybook/react": "^6.1.18",
"@storybook/storybook-deployer": "^2.8.7",
"@usulpro/package-prepare": "^1.3.1",
"babel-eslint": "^10.0.3",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.5.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "3.2.0",
"relative-deps": "^0.2.0",
"url-loader": "^2.2.0"
},
"peerDependencies": {
"@storybook/react": "^5.2.1",
"react": "^16.10.2",
"react-dom": "^16.10.2"
},
"homepage": "https://github.com/focusreactive/storybook-graphql-kit",
"bugs": {
"url": "https://github.com/focusreactive/storybook-graphql-kit/issues"
},
"author": "Oleg Proskurin <oleg@focusreactive.com> (https://github.com/focusreactive)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/focusreactive/storybook-graphql-kit.git"
},
"keywords": [
"graphql",
"kit",
"query",
"queries",
"search",
"storybook",
"storybookjs",
"storybook-addon",
"addon",
"devtools",
"graphql-kit"
]
}