-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 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
{
"name": "ognrange",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect --enable-source-maps ' next dev",
"aprs": "node --enable-source-maps dist/bin/aprs.js",
"build": "yarn aprs:build && yarn next build",
"aprs:build": "tsc --project tsconfig-bin.json",
"dumpdb": "node --enable-source-maps dist/bin/dumpdb.js",
"dumparrow": "node --enable-source-maps dist/bin/dumparrow.js",
"reconcile": "node --enable-source-maps dist/bin/reconcile.js",
"export": "next export",
"start": "next start",
"lint": "next lint",
"test": "jest",
"aprs:dev": "tsc-watch --project tsconfig-bin.json --onFailure \"echo Failed build\" --onSuccess \"node --enable-source-maps --inspect --experimental-fetch dist/bin/aprs.js\"",
"aprs:devbrk": "tsc-watch --project tsconfig-bin.json --onFailure \"echo Failed build\" --onSuccess \"node --enable-source-maps --inspect-brk --experimental-fetch dist/bin/aprs.js\""
},
"dependencies": {
"@loaders.gl/arrow": "^2.0",
"@loaders.gl/json": "^2.0",
"@mapbox/tilebelt": "^1.0.2",
"apache-arrow": "^18.0.0",
"async-lock": "^1.4.0",
"classic-level": "^1.2.0",
"deck.gl": ">8.5.2",
"dotenv": "^16.0.0",
"h3-js": "^4.1.0",
"js-aprs-fap": "^1.1.5",
"js-aprs-is": "^1.0.6",
"lru-cache": "^7.17.0",
"mapbox-gl": "^2.15.0",
"ndarray": "^1.0.19",
"next": "^15.0.3",
"pngjs": "^6.0.0",
"prettier": "^2.7.1",
"react": "^18.0.0",
"react-bootstrap": "^2.1.2",
"react-colorful": "^5.6.1",
"react-dock": "^0.5.1",
"react-dom": "^18.0.0",
"react-icons": "^4.3.1",
"react-map-gl": "^7.1.5",
"react-select": "^5.7.7",
"react-visibility-sensor": "^5.1.1",
"recharts": "^2.1.12",
"swr": "^2.2.4",
"yargs": "^17.3.1"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/async-lock": "^1.4.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.11.9",
"esm": "^3.2.25",
"jest": "^29.7.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsc-watch": "^6.2.1",
"typescript": "^5.1.0"
}
}