This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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
{
"name": "solid-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "vite --open --host --force",
"start:prod": "vite --open --host --force --mode production",
"build": "vite build --sourcemap=true",
"build:analyze": "vite-bundle-visualizer",
"preview": "vite preview --open --port 8080",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@lightningjs/l3-ui-theme-base": "^0.3.2",
"@lightningjs/renderer": "^0.8.3",
"@lightningjs/solid": "^0.15.15",
"@lightningjs/solid-primitives": "^0.6.6",
"@lightningjs/solid-ui": "^0.13.1",
"@solidjs/router": "^0.13.2",
"@storybook/test": "^8.0.9",
"@vitejs/plugin-legacy": "^5.4.0",
"solid-js": "^1.8.17"
},
"devDependencies": {
"@chromatic-com/storybook": "^1",
"@lightningjs/vite-plugin-import-chunk-url": "^0.3.1",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/html": "^8.0.9",
"@storybook/html-vite": "^8.0.9",
"@vitest/browser": "^1.5.0",
"jsdom": "^24.0.0",
"playwright": "^1.43.1",
"storybook": "^8.0.9",
"vite": "^5.2.10",
"vite-bundle-visualizer": "^1.1.0",
"vite-plugin-cross-origin-isolation": "^0.1.6",
"vite-plugin-solid": "^2.10.2",
"vitest": "^1.5.0"
}
}