-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 4.81 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "OnGlide",
"version": "3.3.1",
"description": "OnGlide competition website",
"main": "index.js",
"author": "Melissa Jenkins",
"license": "BSD-3-Clause-Attribution",
"scripts": {
"build": "yarn build:protobuf && yarn build:tsc",
"build:tsc": "tsc --project tsconfig-bin.json",
"build:protobuf": "protoc --plugin=node_modules/ts-proto/protoc-gen-ts_proto --ts_proto_out=. ./lib/protobuf/onglide.proto",
"build:docker": "docker compose build",
"soaringspot": "node dist/bin/soaringspot.js",
"ssscrape": "node dist/bin/ssscrape.js",
"rst": "node dist/bin/rst.js",
"sgp": "node dist/bin/sgp.js",
"setup": "bin/install.js",
"ogn": "node --max-old-space-size=4096 dist/bin/ogn.js",
"ogn:dev": "tsc-watch --project tsconfig-bin.json --onFailure \"echo Failed build\" --onSuccess \"node --enable-source-maps --max-old-space-size=4096 --inspect --experimental-fetch dist/bin/ogn.js\"",
"soaringspot:dev": "tsc-watch --project tsconfig-bin.json --onFailure \"echo Failed build\" --onSuccess \"node --enable-source-maps --inspect --experimental-fetch dist/bin/soaringspot.js\"",
"ssscrape:dev": "tsc-watch --project tsconfig-bin.json --onFailure \"echo Failed build\" --onSuccess \"node --enable-source-maps --inspect --experimental-fetch dist/bin/ssscrape.js\"",
"sgp:dev": "tsc-watch --project tsconfig-bin.json --onFailure \"echo Failed build\" --onSuccess \"node --enable-source-maps --inspect --experimental-fetch dist/bin/sgp.js\"",
"ogn:devbrk": "tsc-watch --project tsconfig-bin.json --onFailure \"echo Failed build\" --onSuccess \"node --enable-source-maps --inspect-brk --experimental-fetch dist/bin/ogn.js\"",
"x:devbrk": "tsc-watch --project tsconfig-bin.json --onFailure \"echo Failed build\" --onSuccess \"node --enable-source-maps --inspect-brk --experimental-fetch dist/test/x.js\"",
"x:dev": "yarn build:tsc && node --enable-source-maps --experimental-fetch dist/test/x.js",
"startai": "node --require ./lib/load-appinsights.js node_modules/next/dist/bin/next start"
},
"dependencies": {
"@babel/helper-module-imports": "^7.18.6",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-regular-svg-icons": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mapbox/tilebelt": ">=1.0.1",
"@mui/icons-material": "^5.15.21",
"@mui/material": "^5.15.21",
"@reduxjs/toolkit": "^2.2.5",
"@turf/along": "^6.5.0",
"@turf/boolean-point-in-polygon": ">=6.0.1",
"@turf/buffer": "^7.1.0",
"@turf/distance": ">=6.0.1",
"@turf/line-chunk": "^6.5.0",
"@turf/line-intersect": "^6.5.0",
"@turf/line-to-polygon": "^6.5.0",
"@turf/turf": ">=5.1.6",
"applicationinsights": "^2.3.4",
"bootstrap": "^5.3.3",
"classic-level": "^1.4.1",
"country-iso-2-to-3": "=1.1.0",
"country-iso-3-to-2": "=1.1.1",
"deck.gl": "^9.0.27",
"dotenv": ">=8.2.0",
"eslint-config-next": "^13",
"fast-deep-equal": "^3.1.3",
"js-aprs-fap": ">=1.0.0",
"js-aprs-is": ">=1.0.1",
"kalmanjs": "^1.1.0",
"lodash": ">=4.17.19",
"lru-cache": ">=10.0.0",
"mapbox-gl": "^3.4.0",
"ndarray": ">=1.0.19",
"next": "^15.1.3",
"node-cache": "^5.1.2",
"node-fetch": "^3.2.10",
"pm2": "^5.3.0",
"pngjs": ">=5.0.0",
"prompts": ">=2.3.2",
"protobufjs": "^7.0.0",
"react": "^18.0.0",
"react-bootstrap": "^2.10.3",
"react-dom": "^18.0.0",
"react-error-boundary": "^4.0.13",
"react-map-gl": "^7.1.7",
"react-redux": "^9.1.2",
"react-use-websocket": "^4.0.0",
"serverless-mysql": ">=1.5.4",
"sql-template-strings": ">=2.2.2",
"stats-incremental": "^1.2.1",
"suncalc": "^1.8.0",
"swr": ">=0.2.3",
"tabletojson": "^4.0.0",
"ws": ">=7.3"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-transform-unicode-regex": "^7.24.7",
"@types/geojson": "^7946.0.14",
"@types/lodash": "^4.14.182",
"@types/lodash.keyby": "^4.6.7",
"@types/lodash.reduce": "^4.6.7",
"@types/node": "^18.6.0",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/ws": "^8.5.10",
"@types/yargs": "^17.0.11",
"prettier": "^2.7.1",
"sass": "^1.36.0",
"ts-proto": "^1.180.0",
"tsc-watch": "^5.0.3",
"typescript": "^5.1.6",
"yargs": "^17.5.1"
}
}