-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.79 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.79 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
84
85
86
87
88
89
90
91
92
93
{
"name": "opendash-instance-example",
"private": true,
"scripts": {
"start": "opendash dev",
"build": "opendash build",
"schema-down": "parse-server-schema down --configPath env.parse.js schema",
"types": "parse-server-schema typescript .\\src\\js\\types --configPath env.parse.js"
},
"dependencies": {
"@ant-design/pro-layout": "^7.22.4",
"@geoman-io/leaflet-geoman-free": "2.16.0",
"@opendash/core": "nightly",
"@opendash/i18n": "nightly",
"@opendash/icons": "nightly",
"@opendash/plugin-bde": "nightly",
"@opendash/plugin-feedback": "nightly",
"@opendash/plugin-geo": "nightly",
"@opendash/plugin-geo-maplibre": "nightly",
"@opendash/plugin-gtfs": "nightly",
"@opendash/plugin-highcharts": "nightly",
"@opendash/plugin-knowledge": "nightly",
"@opendash/plugin-mobility": "nightly",
"@opendash/plugin-monitoring": "nightly",
"@opendash/plugin-openservice": "nightly",
"@opendash/plugin-openware": "nightly",
"@opendash/plugin-parse": "nightly",
"@opendash/plugin-parse-monitoring": "nightly",
"@opendash/plugin-plotly": "nightly",
"@opendash/plugin-timeseries": "nightly",
"@opendash/router": "nightly",
"@opendash/state": "nightly",
"@opendash/ui": "nightly",
"@turf/turf": "^6.5.0",
"antd": "^5.25.2",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"form-data": "^4.0.2",
"framer-motion": "^12.12.1",
"geoblaze": "^2.8.0",
"georaster-layer-for-leaflet": "^3.10.0",
"geotiff": "^2.1.3",
"highcharts": "^9.3.3",
"highcharts-regression": "^2.2.0",
"html-to-image": "^1.11.13",
"i18next": "^25.2.1",
"leaflet": "^1.9.4",
"leaflet-boundary-canvas": "^1.0.0",
"leaflet-draw": "^1.0.4",
"leaflet-gesture-handling": "^1.2.2",
"leaflet.heat": "^0.2.0",
"leaflet.markercluster": "^1.5.3",
"lodash.isequal": "^4.5.0",
"mobx": "^6.13.7",
"mobx-react-lite": "^3.4.3",
"moment": "^2.30.1",
"papaparse": "^5.5.3",
"parse": "^3.5.1",
"parse-hooks": "^0.4.2",
"proj4": "^2.17.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.5.2",
"react-is": "^18.3.1",
"react-leaflet": "^3.2.5",
"react-resizable": "^3.0.5",
"react-window": "^1.8.11",
"styled-components": "^5.3.11",
"tslib": "^2.8.1",
"turf": "^3.0.14"
},
"devDependencies": {
"@opendash/cli": "nightly",
"@types/leaflet": "^1.9.18",
"@types/parse": "^2.18.18",
"@types/proj4": "^2.5.6",
"@types/react": "^18.3.22",
"@types/styled-components": "^5.1.34",
"typescript": "^4.9.5"
},
"prettier": {
"trailingComma": "es5",
"endOfLine": "lf",
"overrides": [
{
"files": "**/translations/**.json",
"options": {
"printWidth": 1000
}
}
]
}
}