forked from commaai/new-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.09 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "new-connect",
"version": "1.0.0",
"homepage": "https://new-connect.connect-d5y.pages.dev",
"license": "MIT",
"author": "comma.ai",
"repository": {
"type": "git",
"url": "https://github.com/commaai/new-connect.git"
},
"scripts": {
"build": "vite build",
"bundle-size": "bun src/ci/check_bundle_size.ts",
"dependency-report": "bun src/ci/dependency_report.ts",
"dev": "vite",
"serve": "vite prefix",
"lines": "bun src/ci/check_lines.ts",
"lint": "biome lint",
"test": "vitest run"
},
"packageManager": "bun@1.2.2",
"type": "module",
"//devDependencies": {
"@solidjs/testing-library": "test solid components (only used for App.jsx component)",
"@types/mapbox__polyline": "types for mapbox elements",
"@vitest/browser": "run vitest suite in browser using playwright",
"autoprefixer": "adds css vendor prefixes automatically",
"jsdom": "js implementation of the dom (used in testing env which we don't really make use of)",
"lefthook": "git hooks manager for pre-commit",
"playwright": "take screenshots to post on PRs",
"postcss": "transforms css with js; autoprefixer and tailwind get plugged into this",
"solid-devtools": "visualize reactivity graph (consider if necessary)",
"tailwindcss": "css framework",
"typescript": "js with types",
"vite": "builds and serves app",
"vite-plugin-solid": "allows vite to properly compile solid components",
"vitest": "testing framework compatible with vite (only used for App.jsx component)",
"wrangler": "used for deploying assets to cloudflare"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@solidjs/testing-library": "^0.8.10",
"@types/bun": "^1.2.2",
"@types/geojson": "^7946.0.16",
"@types/leaflet": "^1.9.16",
"@types/mapbox__polyline": "^1.0.5",
"@vitest/browser": "^3.0.5",
"autoprefixer": "^10.4.20",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"lefthook": "^1.10.10",
"playwright": "^1.50.1",
"postcss": "^8.5.1",
"solid-devtools": "^0.33.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-solid": "^2.11.1",
"vitest": "^3.0.5",
"wrangler": "^3.107.3"
},
"//dependencies": {
"@mapbox/polyline": "display series of map coordinates as a line",
"@sentry/solid": "error monitoring",
"@solidjs/router": "changes view based on browser url",
"clsx": "construct className strings conditionally",
"dayjs": "work with dates (e.g., parse, validate, etc.)",
"hls.js": "stream video data",
"leaflet": "interactive maps",
"solid-js": "JS ui framework"
},
"dependencies": {
"@mapbox/polyline": "^1.2.1",
"@sentry/solid": "^8.54.0",
"@sentry/vite-plugin": "^3.1.2",
"@solid-primitives/state-machine": "^0.1.0",
"@solidjs/router": "^0.15.3",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"hls.js": "^1.5.20",
"leaflet": "^1.9.4",
"qr-scanner": "^1.4.2",
"solid-js": "^1.9.4"
},
"engines": {
"node": ">=20.11.0"
},
"trustedDependencies": [
"@biomejs/biome",
"@sentry/cli"
]
}