-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.98 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
{
"name": "stencil-storybook-token-demo",
"version": "0.0.1",
"description": "",
"repository": "",
"author": "",
"license": "",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/stencil-storybook-token-demo/stencil-storybook-token-demo.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"build:watch": "stencil build --watch --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"storybook:dev": "start-storybook -p 6006",
"storybook": "npm run build && npm-run-all --parallel build:watch storybook:dev",
"build-storybook": "npm run build && build-storybook -o docs"
},
"dependencies": {
"@stencil/core": "~1.17.3",
"classnames": "~2.3.2",
"lit-element": "~2.4.0"
},
"devDependencies": {
"@babel/core": "~7.11.4",
"@babel/plugin-syntax-jsx": "~7.10.4",
"@babel/plugin-transform-react-jsx": "~7.10.4",
"@stencil/react-output-target": "0.0.9",
"@storybook/addon-actions": "~6.0.21",
"@storybook/addon-essentials": "~6.0.21",
"@storybook/addon-knobs": "~6.0.20",
"@storybook/addon-links": "~6.0.21",
"@storybook/addon-notes": "~5.3.21",
"@storybook/addons": "~6.0.21",
"@storybook/theming": "~6.5.15",
"@storybook/web-components": "~6.0.21",
"@types/jest": "~26.0.12",
"@types/node": "~14.6.2",
"@types/react": "~16.9.49",
"babel-loader": "~8.1.0",
"copy-webpack-plugin": "~6.0.4",
"lit-html": "~1.3.0",
"npm-run-all": "~4.1.5",
"react-is": "~16.13.1",
"write-file-webpack-plugin": "~4.5.1"
}
}