-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.28 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.28 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
{
"name": "solid-demo-app",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "vite --host --force",
"start:dom": "VITE_LIGHTNING_DOM_RENDERING=true vite --host --force",
"start:prod": "vite --host --force --mode production",
"build": "vite build --sourcemap=true",
"build:tizen": "vite build --config vite.config.tizen.js --base=./ --outDir tizen --emptyOutDir false",
"build:lg": "vite build --sourcemap=false --base=./ --outDir lg --emptyOutDir false && ares-package lg --outdir lg --no-minify",
"build:github": "node scripts/build-github.js",
"build:github:dev": "NODE_ENV=development vite build --sourcemap=true --mode development --base=/solid-demo-app/",
"build:analyze": "vite-bundle-visualizer",
"deploy": "gh-pages -d dist -a",
"preview": "vite preview --port 8080 --host",
"tsc": "tsc",
"lint:prettier": "prettier --check \"**/*.{ts,js,cjs,md,tsx}\"",
"lint:fix:prettier": "prettier --write \"**/*.{ts,js,cjs,md,tsx}\"",
"test": "vitest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@lightningjs/renderer": "3.0.0-beta22",
"@lightningtv/solid": "3.1.10",
"@firebolt-js/sdk": "^1.7.0",
"@solid-primitives/list": "^0.1.2",
"@solid-primitives/scheduled": "^1.5.2",
"@solidjs/router": "^0.15.3",
"browserlist": "^1.0.1",
"proxy-polyfill": "^0.3.2",
"shaka-player": "^4.16.5",
"solid-js": "^1.9.9",
"vite-plugin-babel": "^1.3.2",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@lightningtv/vite-hex-transform": "^1.1.0",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-legacy": "^7.2.1",
"baseline-browser-mapping": "^2.10.0",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2",
"solid-devtools": "^0.34.4",
"terser": "^5.44.0",
"typescript": "^5.9.3",
"vite": "^7.1.10",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-solid": "^2.11.9",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.{js,cjs,md}": "prettier --write"
},
"packageManager": "pnpm@10.17.0"
}