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 8
/
package.json
61 lines (61 loc) · 2.12 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "solid-demo-app",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "pnpm start:lightning",
"-------------------------[lightning]-----------------------": "",
"start:lightning": "pnpm -F lightning start",
"start:lightning-prod": "pnpm -F lightning start:prod",
"build:lightning": "pnpm -F lightning build",
"build:lightning-github": "pnpm -F lightning build:github",
"build:lightning-analyze": "pnpm -F lightning build:analyze",
"deploy:lightning": "pnpm -F lightning deploy",
"preview:lightning": "pnpm -F lightning preview",
"tsc:lightning": "pnpm -F lightning tsc",
"-------------------------[web]------------------------------": "",
"start:web": "pnpm -F web start",
"start:web-prod": "pnpm -F web start:prod",
"build:web": "pnpm -F web build",
"build:github-web": "pnpm -F web build:github",
"build:web-analyze": "pnpm -F web build:analyze",
"deploy:web": "pnpm -F web deploy",
"preview:web": "vite preview --open --port 8080",
"tsc:web": "pnpm -F web tsc",
"-------------------------[test]----------------------------": "",
"lint:prettier": "prettier --check \"**/*.{ts,js,cjs,md,tsx}\"",
"lint:fix:prettier": "prettier --write \"**/*.{ts,js,cjs,md,tsx}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@solid-primitives/scheduled": "^1.4.3",
"@solidjs/router": "^0.13.2",
"proxy-polyfill": "^0.3.2",
"solid-js": "^1.8.17",
"vite-plugin-babel": "^1.2.0"
},
"devDependencies": {
"@lightningjs/vite-plugin-import-chunk-url": "^0.3.1",
"@vitejs/plugin-legacy": "^5.3.2",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"terser": "^5.30.4",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-bundle-visualizer": "^1.1.0",
"vite-plugin-cross-origin-isolation": "^0.1.6",
"vite-plugin-solid": "^2.10.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.{js,cjs,md}": "prettier --write"
}
}