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
|
{
"name": "traccar",
"version": "5.0.0",
"private": true,
"dependencies": {
"@craco/craco": "^5.9.0",
"@mapbox/mapbox-gl-draw": "^1.3.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.58",
"@reduxjs/toolkit": "^1.8.1",
"@tmcw/togeojson": "^4.5.0",
"@turf/circle": "^6.5.0",
"@turf/turf": "^6.5.0",
"mapbox-gl": "^1.13.2",
"maplibre-gl": "^2.1.9",
"material-ui-dropzone": "^3.5.0",
"moment": "^2.29.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "^3.4.4",
"react-virtualized-auto-sizer": "^1.0.5",
"react-window": "^1.8.6",
"recharts": "^2.1.10",
"redux": "^4.2.0",
"typeface-roboto": "1.1.13",
"wellknown": "^0.5.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"build_release": "PUBLIC_URL=/modern/ craco build",
"test": "craco test",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js ."
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0"
}
}
|