-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.22 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
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
{
"name": "connect",
"version": "0.8.0",
"scripts": {
"start": "vite",
"build:development": "vite build --mode development",
"build:production": "vite build",
"build:gallery": "bun add --no-save --trust puppeteer@24.16.0 pixelmatch@7.1.0 pngjs@7.0.0 && node scripts/build-gallery.mjs",
"serve": "vite preview",
"lint": "oxlint src",
"test": "vitest run",
"test:watch": "vitest",
"test-coverage": "vitest run --coverage"
},
"repository": "https://github.com/commaai/connect.git",
"author": "Chris Vickery <chrisinajar@gmail.com>",
"contributors": [
"Joost Wooning <jwooning@gmail.com>",
"Chris Vickery <chrisinajar@gmail.com>",
"Cameron Clough <cameronjclough@gmail.com>"
],
"private": true,
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=18",
"bun": ">=1.3.0"
},
"dependencies": {
"@commaai/my-comma-auth": "^1.4.1",
"@mapbox/mapbox-sdk": "^0.15.3",
"@material-ui/core": "^1.5.1",
"@material-ui/icons": "^1.1.1",
"@sentry/react": "^7.64.0",
"@sentry/vite-plugin": "^2.7.0",
"barcode-detector": "^3.0.8",
"connected-react-router": "^4.5.0",
"dayjs": "^1.11.9",
"history": "^4.10.1",
"jwt-decode": "^3.1.2",
"localforage": "^1.10.0",
"mapbox-gl": "^1.13.3",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-map-gl": "^5.3.21",
"react-player": "^2.12.0",
"react-redux": "^5.1.2",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^13.4.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^3.2.7",
"jsdom": "^26.1.0",
"oxlint": "^1.73.0",
"tailwindcss": "^4",
"vite": "^5",
"vitest": "^3.2.7",
"whatwg-fetch": "^3.6.17"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"trustedDependencies": [
"@sentry/cli",
"core-js",
"jss"
]
}