-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
71 lines (71 loc) · 1.82 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
{
"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": "^2.10.1",
"@parcel/transformer-inline-string": "^2.10.1",
"@parcel/transformer-sass": "^2.10.1",
"@types/jest": "^29.5.4",
"@types/leaflet": "^1.9.6",
"@types/loadjs": "^4.0.1",
"@types/react-test-renderer": "^18.0.1",
"autoprefixer": "^10.4.13",
"jest": "^29.6.4",
"parcel": "^2.9.3",
"react-test-renderer": "^18.2.0",
"svgo": "^3.3.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@sentry/react": "^8.33.1",
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-timeago": "^4.1.3",
"htmx.org": "^1.9.10",
"leaflet": "^1.9.4",
"leaflet.locatecontrol": "^0.81.0",
"loadjs": "^4.2.0",
"lodash": "^4.17.21",
"maplibre-gl": "^4.0.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-map-gl": "^7.1.2",
"react-timeago": "^7.1.0",
"reqwest": "^2.0.5",
"wouter": "^3.1.0"
},
"targets": {
"default": {
"source": [
"frontend/css/style.scss",
"frontend/js/app.tsx"
],
"distDir": "busstops/static/dist",
"engines": {
"browsers": "Chrome 70"
}
},
"bigmap": {
"source": [
"frontend/js/bigmap.js",
"frontend/js/bigmap-classic.js"
],
"distDir": "busstops/static/dist",
"engines": {
"browsers": "ie >= 11"
}
}
},
"scripts": {
"watch": "API_ROOT=/ parcel watch",
"build": "API_ROOT=https://bustimes.org/ parcel build",
"lint": "tsc -noEmit",
"test": "TZ=UTC jest"
}
}