-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "@cg/ui",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/cg-ui/cg-ui.esm.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"watch": "stencil build --watch",
"storybook": "storybook dev -p 6006 --no-open",
"build:storybook": "storybook build",
"test": "playwright test",
"test:watch": "playwright test --ui"
},
"dependencies": {
"@cg/styles": "workspace:*",
"@cg/utils": "workspace:*",
"@stencil/core": "^4.23.1"
},
"devDependencies": {
"@stencil/playwright": "^0.2.1",
"@stencil/sass": "^3.0.12",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/web-components": "^8.4.7",
"@storybook/web-components-vite": "^8.4.7",
"storybook": "^8.4.7"
}
}