-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "griddle",
"private": true,
"version": "0.0.0",
"type": "module",
"types": "griddle.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --workspace=vitest.workspace.ts",
"test:storybook": "storybook build & storybook dev -p 6006 & test-storybook",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"test:ui": "vitest --workspace=vitest.workspace.ts --ui"
},
"dependencies": {
"lit": "^3.1.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@storybook/addon-a11y": "^8.5.8",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-interactions": "^8.5.8",
"@storybook/blocks": "^8.4.5",
"@storybook/test": "^8.5.8",
"@storybook/test-runner": "^0.21.3",
"@storybook/web-components": "^8.4.5",
"@storybook/web-components-vite": "^8.4.5",
"@vitest/browser": "^3.1.4",
"@vitest/ui": "^3.1.4",
"playwright": "^1.52.0",
"storybook": "^8.4.5",
"typescript": "^5.2.2",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^3.1.4",
"vitest-browser-lit": "^0.1.0"
}
}