-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.85 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
{
"name": "storybook-addon-export-stories",
"version": "1.0.2",
"description": "A storybook addon to export all stories to a json file",
"keywords": [
"addon",
"react",
"storybook"
],
"homepage": "https://github.com/atanasster/storybook-addon-export-stories/",
"bugs": "https://github.com/atanasster/storybook-addon-export-stories/issues",
"repository": {
"type": "git",
"url": "https://github.com/atanasster/storybook-addon-export-stories.git"
},
"license": "MIT",
"author": "Atanas Stoyanov",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"storybook": "start-storybook -p 6001",
"build": "rollup -c && tsc",
"debug": "NODE_OPTIONS=--inspect-brk start-storybook -p 6001",
"build-storybook": "build-storybook -c .storybook -o docs",
"pub": "pushd ./ && npm run build && cd dist && npm publish && popd"
},
"peerDependencies": {
"@storybook/addon-docs": ">= 5.3.0",
"@storybook/addons": ">= 5.3.0",
"@storybook/api": ">= 5.3.0",
"@storybook/components": ">= 5.3.0",
"@storybook/react": ">= 5.3.0",
"react": ">= 16.8.3",
"react-dom": ">= 16.8.3"
},
"devDependencies": {
"@storybook/addon-docs": "^5.3.0",
"@storybook/addons": "^5.3.0",
"@storybook/api": "^5.3.0",
"@storybook/components": "^5.3.0",
"@storybook/react": "^5.3.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-loader": "^8.0.6",
"react": "^16.8.3",
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-copy-glob": "^0.3.1",
"rollup-plugin-delete": "^1.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.22.1",
"typescript": "^3.5.3"
}
}