-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "tremtec.com",
"type": "module",
"scripts": {
"postinstall": "lefthook install",
"w": "wrangler2",
"fmt": "biome format --fix",
"lint": "biome lint --fix --unsafe",
"fix": "biome format --fix && biome lint --fix --unsafe",
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"preview": "bun run build && npx wrangler2 pages dev",
"deploy": "bun run build && wrangler2 pages deploy"
},
"dependencies": {
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.0",
"@solidjs/start": "^1.1.0",
"solid-js": "^1.9.5",
"vinxi": "^0.5.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20250312.0",
"@tailwindcss/vite": "^4.0.7",
"lefthook": "^1.11.3",
"lint-staged": "^15.5.0",
"tailwindcss": "^4.0.7",
"wrangler": "^4.0.0"
},
"volta": {
"bun": "1.2.5",
"node": "22.13.0"
},
"trustedDependencies": ["@parcel/watcher"],
"lint-staged": {
"*.{json,js,ts,jsx,tsx,yml,yaml}": [
"biome format --fix",
"biome lint --fix --unsafe"
]
}
}