-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.95 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
{
"name": "stencil-storybook-demo",
"version": "0.0.1",
"description": "Stencil Component Starter",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"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-demo/stencil-storybook-demo.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/stencil-component-starter.git"
},
"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": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"stencil.dev": "npm run build -- --watch",
"build-tokens": "style-dictionary build --config ./sd.config.json",
"build-tokens.watch": "npm run build-tokens && chokidar \"tokens/**/*.json\" -c \"npm run build-tokens\""
},
"dependencies": {
"@stencil/core": "^2.13.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@pxtrn/storybook-addon-docs-stencil": "^6.4.1",
"@stencil-community/postcss": "^2.1.0",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack4": "^6.5.13",
"@storybook/manager-webpack4": "^6.5.13",
"@storybook/web-components": "^6.5.13",
"@types/autoprefixer": "^10.2.0",
"@types/jest": "^27.0.3",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"chokidar-cli": "^3.0.0",
"jest": "^27.4.5",
"jest-cli": "^27.4.5",
"lit-html": "^2.4.0",
"postcss-nesting": "^10.2.0",
"puppeteer": "^10.0.0",
"style-dictionary": "^3.7.1"
},
"license": "MIT"
}