-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.98 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.98 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@croct/template-ui",
"version": "0.0.0-dev",
"description": "UI components for previewing templates installed by Croct CLI.",
"author": {
"name": "Croct",
"email": "lib+template-ui-js@croct.com",
"url": "https://github.com/croct-tech/template-ui-js"
},
"license": "MIT",
"keywords": [
"croct",
"personalization",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/template-ui-js.git"
},
"bugs": {
"url": "https://github.com/croct-tech/template-ui-js/issues"
},
"homepage": "https://github.com/croct-tech/template-ui-js",
"type": "module",
"exports": {
"./*": {
"import": "./*.js",
"require": "./*.cjs"
}
},
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"validate": "tsc --noEmit",
"dev": "vite",
"build-web-component": "tsc -b && vite build --config vite.web.config.ts",
"build": "tsc -b && vite build",
"postbuild": "./post-build.mjs",
"storybook-react": "storybook dev -p 6007 --config-dir .storybook/react",
"storybook-web-component": "storybook dev -p 6009 --config-dir .storybook/web",
"build-storybook-react": "storybook build --config-dir .storybook/react --output-dir storybook-static/react",
"build-storybook-web-component": "storybook build --config-dir .storybook/web --output-dir storybook-static/web-component",
"build-storybook": "storybook build",
"test-storybook-react": "test-storybook -c .storybook/react --url http://127.0.0.1:6007",
"test-storybook-web-component": "test-storybook -c .storybook/web --url http://127.0.0.1:6009"
},
"dependencies": {
"@r2wc/react-to-web-component": "^2.0.4",
"clsx": "^2.1.1",
"react": "^18.0 || ^19.0",
"react-dom": "^18.0 || ^19.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.5",
"@croct/eslint-plugin": "^0.7.0",
"@storybook/addon-essentials": "^8.6.3",
"@storybook/addon-onboarding": "^8.6.3",
"@storybook/addon-themes": "^8.6.3",
"@storybook/blocks": "^8.6.3",
"@storybook/experimental-addon-test": "^8.6.3",
"@storybook/react": "^8.6.3",
"@storybook/react-vite": "^8.6.3",
"@storybook/test": "^8.6.3",
"@storybook/test-runner": "^0.22.0",
"@storybook/web-components-vite": "^8.6.3",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "^3.0.7",
"@vitest/coverage-v8": "^3.0.7",
"esbuild-fix-imports-plugin": "^1.0.19",
"eslint": "^8.0.0",
"eslint-plugin-storybook": "^0.11.3",
"load-tsconfig": "^0.2.5",
"playwright": "^1.50.1",
"rollup-plugin-preserve-directives": "^0.4.0",
"storybook": "^8.6.3",
"typescript": "^5.0.0",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-externalize-deps": "^0.9.0",
"vitest": "^3.0.7"
},
"files": [
"**/*.js",
"**/*.cjs",
"**/*.mjs",
"**/*.ts",
"**/*.cts",
"**/*.map"
]
}