-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.89 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.89 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
{
"private": true,
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-flow": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@parcel/optimizer-data-url": "^2.10.1",
"@parcel/transformer-inline-string": "^2.10.1",
"@parcel/transformer-sass": "^2.10.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.6",
"@types/loadjs": "^4.0.1",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/react-test-renderer": "^19.1.0",
"autoprefixer": "^10.4.13",
"jest": "^30.0.0",
"parcel": "^2.9.3",
"react-test-renderer": "^19.1.1",
"svgo": "^4.0.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@sentry/react": "^10.28.0",
"@types/lodash": "^4.14.197",
"@types/node": "^25.0.8",
"htmx.org": "^2.0.4",
"jest-environment-jsdom": "^30.2.0",
"leaflet": "^1.9.4",
"leaflet.locatecontrol": "^0.86.0",
"loadjs": "^4.2.0",
"lodash": "^4.17.21",
"maplibre-gl": "^5.8.0",
"process": "^0.11.10",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-map-gl": "^8.1.0",
"react-timeago": "^8.3.0",
"reqwest": "^2.0.5",
"wouter": "^3.1.0"
},
"alias": {
"react-map-gl/maplibre": "@vis.gl/react-maplibre"
},
"targets": {
"default": {
"source": [
"frontend/css/style.scss",
"frontend/js/app.tsx"
],
"distDir": "busstops/static/dist",
"engines": {
"browsers": "Chrome 90"
}
},
"bigmap": {
"source": [
"frontend/js/bigmap.js",
"frontend/js/bigmap-classic.js"
],
"distDir": "busstops/static/dist",
"engines": {
"browsers": "ie >= 11"
}
}
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"lint": "tsc -noEmit",
"test": "TZ=UTC jest"
}
}