forked from linearlabs-workspace/storybook-addon-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "storybook-addon-mock",
"version": "0.1.0",
"description": "A storybook addon to mock http request",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "yarn run build && start-storybook -p 6006",
"clean": "rm -rf dist",
"build": "yarn run clean && babel src -d dist",
"lint": "eslint .",
"ci": "yarn run lint && yarn run build",
"lint:fix": "yarn run lint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/nutboltu/storybook-addon-mock.git"
},
"keywords": [
"storybook",
"mock",
"http-mock",
"fetch-mock",
"mock-data",
"storybook-addon",
"data-state"
],
"author": "Farhad Yasir (nutboltu)",
"license": "MIT",
"dependencies": {
"@emotion/styled": "^11.1.5",
"@storybook/addons": "6.0.28",
"@storybook/react": "6.0.28",
"mock-xmlhttprequest": "^7.0.3"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.22.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"storybook": {
"displayName": "Mock Request",
"supportedFrameworks": [
"react"
]
}
}