-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 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
{
"name": "opendbc-site",
"type": "module",
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"format": "biome format --write",
"lint": "biome lint --write",
"check": "biome check --write",
"lines": "bun run src/ci/check_lines.ts"
},
"//devDependencies": {
"@biomejs/biome": "all-in-one linter, formatter, and import organizer",
"@tailwindcss/vite": "vite plugin for tailwind css integration",
"bun-types": "type definitions for bun - specifically for check_lines.ts",
"lefthook": "git hooks manager for pre-commit and pre-push automation",
"tailwindcss": "utility-first CSS framework"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@tailwindcss/vite": "^4.0.7",
"bun-types": "^1.2.19",
"lefthook": "^1.12.2",
"tailwindcss": "^4.0.7"
},
"//dependencies": {
"@solidjs/router": "client-side routing for solidjs",
"@solidjs/start": "full-stack web framework for solidjs",
"clsx": "utility for constructing className strings conditionally",
"corvu": "ui components for solidjs",
"solid-js": "reactive js lib for ui",
"tailwind-merge": "utility to merge tailwind css classes without style conflicts",
"vinxi": "build tool and dev server for solidstart"
},
"dependencies": {
"@solidjs/router": "^0.15.0",
"@solidjs/start": "^1.1.0",
"clsx": "^2.1.1",
"corvu": "^0.7.2",
"solid-js": "^1.9.5",
"tailwind-merge": "^3.3.1",
"vinxi": "^0.5.7"
},
"engines": {
"node": ">=22"
}
}