-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.37 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.37 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
{
"name": "solid-app",
"version": "3.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",
"tsc": "tsc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky",
"lint": "eslint '**/*.{js,ts,jsx,tsx}' --format stylish --ignore-pattern 'dist/*' --ignore-pattern 'node_modules'",
"lint-fix": "eslint '**/*.{js,ts,jsx,tsx}' --fix --ignore-pattern 'dist/*' --ignore-pattern 'node_modules'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@lightningjs/renderer": "3.0.0-beta22",
"@lightningtv/solid": "^3.1.4",
"@lightningtv/vite-hex-transform": "^1.1.0",
"@solid-primitives/i18n": "^2.2.1",
"@solidjs/router": "^0.15.4",
"@storybook/addon-a11y": "^9.1.16",
"@storybook/addon-docs": "^9.1.16",
"@storybook/addon-links": "^9.1.16",
"@storybook/addon-onboarding": "^9.1.16",
"@storybook/addon-vitest": "^9.1.16",
"@vitest/coverage-v8": "^3.2.4",
"lodash-es": "^4.17.21",
"shaka-player": "^4.16.11",
"solid-js": "^1.9.10",
"storybook": "^9.1.16",
"storybook-solidjs-vite": "^9.0.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@eslint/js": "^9.39.1",
"@vitejs/plugin-legacy": "^6.1.1",
"@vitest/browser": "^3.2.4",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "^9.1.16",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.2.7",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"vite": "^6.4.1",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-cross-origin-isolation": "^0.1.6",
"vite-plugin-solid": "^2.11.10",
"vitest": "^3.2.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}