-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
93 lines (93 loc) · 3.39 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
93
{
"name": "connect-beta",
"version": "1.0.0",
"homepage": "https://connect-beta.comma.ai",
"license": "MIT",
"author": "comma.ai",
"repository": {
"type": "git",
"url": "https://github.com/commaai/connect-beta.git"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"serve": "vite prefix",
"lint": "eslint --cache --cache-location node_modules/.eslintcache",
"prepare": "husky",
"pre-commit": "bun lint",
"test": "vitest run"
},
"packageManager": "bun@1.1.18",
"type": "module",
"//devDependencies": {
"@solidjs/testing-library": "test solid components (only used for App.jsx component)",
"@stylistic/eslint-plugin": "enforce stylistic rules beyond standard ESLint",
"@types/eslint__js": "types for linting engine",
"@types/mapbox__polyline": "types for mapbox elements",
"@typescript-eslint/eslint-plugin": "ESLint rules for TS",
"@typescript-eslint/parser": "allows ESLint to parse TS",
"autoprefixer": "adds css vendor prefixes automatically",
"eslint": "linting engine",
"eslint-plugin-solid": "ESLint rules specific to solid",
"eslint-plugin-tailwindcss": "ESLint rules specific to tailwind",
"globals": "defines global identifiers for ESLint",
"husky": "git hooks tool, used here for pre-commit linting",
"jsdom": "js implementation of the dom (used in testing env which we don't really make use of)",
"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",
"typescript-eslint": "lets ESLint support TS",
"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": {
"@solidjs/testing-library": "^0.8.8",
"@stylistic/eslint-plugin": "^2.1.0",
"@types/eslint__js": "^8.42.3",
"@types/mapbox__polyline": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.4.0",
"eslint-plugin-solid": "^0.14.0",
"eslint-plugin-tailwindcss": "^3.17.3",
"globals": "^15.4.0",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"playwright": "^1.44.1",
"postcss": "^8.4.38",
"solid-devtools": "^0.30.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0",
"vite": "^5.2.13",
"vite-plugin-solid": "^2.10.2",
"vitest": "^1.6.0",
"wrangler": "^3.60.2"
},
"//dependencies": {
"@mapbox/polyline": "display series of map coordinates as a line",
"@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",
"solid-js": "JS ui framework"
},
"dependencies": {
"@mapbox/polyline": "^1.2.1",
"@solid-primitives/state-machine": "^0.0.3",
"@solidjs/router": "^0.13.5",
"clsx": "^1.2.1",
"dayjs": "^1.11.11",
"hls.js": "^1.5.13",
"qr-scanner": "^1.4.2",
"solid-js": "^1.8.17"
},
"engines": {
"node": ">=20.11.0"
}
}