forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.41 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
{
"name": "@open-wc/demoing-storybook",
"version": "2.0.6",
"publishConfig": {
"access": "public"
},
"description": "Storybook configuration following open-wc recommendations",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/open-wc.git",
"directory": "packages/building-storybook"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/open-wc/tree/master/packages/demoing-storybook",
"main": "index.js",
"bin": {
"start-storybook": "src/start/cli.js",
"build-storybook": "src/build/cli.js"
},
"scripts": {
"build:start": "es-dev-server --root-dir storybook-static --app-index index.html --open",
"prepublishOnly": "../../scripts/insert-header.js",
"site:build": "node src/build/cli.js --config-dir demo/.storybook -o ../../_site/demoing-storybook",
"start": "npm run storybook",
"storybook": "node src/start/cli.js -c demo/.storybook --root-dir ../../",
"storybook:build": "node src/build/cli.js -c demo/.storybook",
"storybook:build:start": "npm run storybook:build && es-dev-server --root-dir storybook-static --open",
"test": "mocha test/**/*.test.js test/*.test.js",
"test:watch": "mocha test/**/*.test.js test/*.test.js --watch"
},
"files": [
"*.js",
"src"
],
"keywords": [
"storybook",
"demo",
"demo-states",
"testing"
],
"peerDependencies": {
"lit-html": "^1.0.0"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.1",
"@babel/preset-env": "^7.9.0",
"@mdx-js/mdx": "^1.5.1",
"@open-wc/rollup-plugin-html": "^1.0.2",
"@open-wc/rollup-plugin-polyfills-loader": "^1.0.3",
"@rollup/plugin-node-resolve": "^7.1.1",
"@storybook/addon-docs": "5.3.1",
"babel-plugin-bundled-import-meta": "^0.3.2",
"babel-plugin-template-html-minifier": "^4.0.0",
"command-line-args": "^5.0.2",
"command-line-usage": "^6.1.0",
"deepmerge": "^4.2.2",
"es-dev-server": "^1.46.5",
"es-module-lexer": "^0.3.13",
"fs-extra": "^8.1.0",
"glob": "^7.1.3",
"lit-html": "^1.0.0",
"magic-string": "^0.25.7",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^5.0.0-alpha.1",
"rollup-plugin-terser": "^5.2.0",
"storybook-addon-markdown-docs": "^0.2.7",
"storybook-prebuilt": "^1.5.0"
}
}