forked from MagalyMJ/stencil-automated-stories
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "stencil-automated-stories",
"version": "0.0.1",
"description": "Stencil Component Starter",
"main": "dist/index.cjs.js",
"module": "dist/custom-elements/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/custom-elements/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/stencil-automated-stories/stencil-automated-stories.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"storybook.run": "start-storybook -p 6006 -s dist",
"storybook": "npm-run-all --parallel build storybook.run",
"build-storybook": "build-storybook -c ./.storybook -o ../public"
},
"dependencies": {
"@stencil/core": "^2.0.1",
"@stencil/sass": "^1.4.0",
"clsx": "^1.1.1",
"sass": "^1.29.0"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.9",
"@storybook/addon-actions": "^6.1.7",
"@storybook/addon-essentials": "^6.1.7",
"@storybook/addon-links": "^6.1.7",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addon-viewport": "^6.1.7",
"@storybook/html": "^6.1.7",
"babel-loader": "^8.2.2",
"case": "^1.6.3",
"npm-run-all": "^4.1.5"
}
}