-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
106 lines (106 loc) · 3.12 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "connect",
"version": "0.8.0",
"scripts": {
"start": "vite",
"build:development": "env-cmd .env.development vite build --mode development",
"build:production": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"test": "jest",
"test-coverage": "jest --coverage",
"test-puppeteer": "jest -c src/__puppeteer__/jest.config.js",
"test-puppeteer-build": "JEST_PUPPETEER_CONFIG=jest-puppeteer.build.config.js pnpm test-puppeteer"
},
"repository": "https://github.com/commaai/connect.git",
"author": "Chris Vickery <[email protected]>",
"contributors": [
"Joost Wooning <[email protected]>",
"Chris Vickery <[email protected]>",
"Cameron Clough <[email protected]>"
],
"private": true,
"engines": {
"node": ">=16"
},
"dependencies": {
"@commaai/api": "github:commaai/comma-api#3.1.3",
"@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",
"connected-react-router": "^4.5.0",
"dayjs": "^1.11.9",
"debounce": "^1.2.1",
"global": "^4.4.0",
"history": "^4.10.1",
"jwt-decode": "^3.1.2",
"localforage": "^1.10.0",
"mapbox-gl": "^1.13.3",
"obstruction": "^2.1.0",
"prop-types": "^15.8.1",
"qr-scanner": "^1.4.2",
"query-string": "^6.14.1",
"raf": "^3.4.1",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-map-gl": "^5.3.21",
"react-measure": "^2.5.2",
"react-player": "^2.12.0",
"react-redux": "^5.1.2",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"reduce-reducers": "^1.0.4",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"web-vitals": "^3.4.0"
},
"devDependencies": {
"@swc/core": "^1.3.80",
"@swc/jest": "^0.2.29",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.15",
"camelcase": "^6.3.0",
"env-cmd": "^8.0.2",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"expect-puppeteer": "^9.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-chain-transform": "^0.0.5",
"jest-environment-jsdom": "^27.5.1",
"jest-environment-puppeteer": "^6.2.0",
"jest-puppeteer": "^6.2.0",
"postcss": "^8.4.28",
"puppeteer": "^19.11.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.3.3",
"vite": "^4.5.3",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-svgr": "^3.2.0",
"whatwg-fetch": "^3.6.17",
"workbox-window": "^7.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}