-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "bus-alerts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "vite serve src_client",
"preview": "vite preview src_client",
"server": "ts-node src_node/webServer.ts",
"build:client": "vite build src_client --outDir ../dist --emptyOutDir",
"build:server": "tsc --sourceMap --project src_node",
"build": "npm run build:client && npm run build:server"
},
"author": "ish@ish.works",
"license": "Unlicense",
"devDependencies": {
"@tsconfig/node-lts-strictest-esm": "^18.12.1",
"@types/docopt": "^0.6.33",
"@types/express": "^4.17.17",
"@types/ini": "^1.3.31",
"@types/morgan": "^1.9.4",
"@types/pg": "^8.10.2",
"@types/proj4": "^2.5.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/smoothscroll-polyfill": "^0.3.1",
"@vitejs/plugin-react": "^1.1.3",
"sass": "^1.45.1",
"ts-node": "^10.9.1",
"typescript": "^4.5.4",
"vite": "^2.7.6"
},
"dependencies": {
"@moebius/http-graceful-shutdown": "^1.1.0",
"@types/luxon": "^2.0.8",
"@types/mapbox-gl": "^2.6.0",
"clsx": "^1.2.1",
"docopt": "^0.6.2",
"express": "^4.18.2",
"furry-text-search": "^0.2.0",
"got": "^13.0.0",
"gtfs-realtime-bindings": "^1.1.1",
"http-status-codes": "^2.2.0",
"ini": "^4.1.1",
"luxon": "^2.2.0",
"mapbox-gl": "^2.6.1",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"pg": "^8.11.0",
"proj4": "^2.9.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-virtuoso": "^2.4.0",
"smoothscroll-polyfill": "^0.4.4",
"use-resize-observer": "^9.1.0",
"winston": "^3.9.0"
}
}