-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.29 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
{
"name": "openskimap.org",
"version": "1.0.0",
"description": "Map focused towards winter sports.",
"main": "app.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js --mode development",
"postinstall": "webpack --config webpack.prod.js --mode production",
"pull": "git pull; npm install",
"deploy": "git pull; npm install",
"check-types": "tsc"
},
"author": "Russell Porter",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.6",
"@mui/material": "^5.16.6",
"@mui/system": "^5.16.6",
"@turf/centroid": "^7.0.0",
"@turf/distance": "^7.0.0",
"@turf/helpers": "^7.0.0",
"@turf/length": "^7.0.0",
"@turf/line-chunk": "^7.0.0",
"@turf/line-slice-along": "^7.0.0",
"@turf/meta": "^7.0.0",
"@turf/nearest-point-on-line": "^7.0.0",
"@types/chart.js": "^2.9.41",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-outside-click-handler": "^1.3.3",
"chart.js": "^4.4.3",
"clsx": "^2.1.1",
"memoize-one": "^6.0.0",
"openskidata-format": "^0.14.0",
"query-string": "^9.1.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-detect-click-outside": "^1.1.7",
"react-dom": "^18.3.1",
"shallow-equal": "^3.1.0",
"throttle-debounce": "^5.0.2",
"tslib": "^2.6.3",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@types/geojson": "^7946.0.14",
"@types/mapbox-gl": "^3.4.0",
"@types/node": "^20.14.14",
"@types/throttle-debounce": "^5.0.2",
"@types/webpack-bundle-analyzer": "~4.7.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.0",
"prettier": "^3.3.3",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.3.0"
},
"resolutions": {
"@types/react": "^18.3.3"
},
"packageManager": "[email protected]"
}