-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 2.95 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": "synthflight",
"productName": "SynthFlight",
"version": "1.0.4",
"description": "A fully client-side software for planning aerial photography",
"main": "electronApp.js",
"browser": "index.html",
"browserslist": [
"chrome >= 7",
"firefox >= 4",
"ie >= 8",
"safari >= 5",
"ios_saf >= 5",
"last 2 versions"
],
"babel": {
"presets": [
[
"@babel/env",
{
"useBuiltIns": "usage",
"corejs": {
"version": 3,
"proposals": true
},
"targets": "chrome >= 7, firefox >= 4, ie >= 8, safari >= 5, ios_saf >= 5, last 2 versions",
"forceAllTransforms": true,
"spec": true
}
]
],
"plugins": [
[
"@babel/plugin-proposal-class-properties"
],
[
"@babel/plugin-transform-runtime",
{
"corejs": 3
}
]
]
},
"scripts": {
"start": "electron electronApp.js",
"postinstall": "npm link leaflet-advanced-layer-system",
"serve": "http-server \"./dist/SynthFlight-browser\" -c-1",
"build": "node build.js",
"build-and-serve": "node build.js -b && npm run serve",
"build-and-serve-debug": "node build.js -b -d && npm run serve"
},
"keywords": [],
"author": "matafokka",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/matafokka/SynthFlight",
"repository": "https://github.com/matafokka/SynthFlight",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.1",
"@babel/runtime-corejs3": "^7.12.5",
"@mapbox/geojson-merge": "^1.1.1",
"@turf/area": "^6.5.0",
"@turf/bbox": "^6.0.1",
"@turf/bbox-polygon": "^6.4.0",
"@turf/helpers": "^6.1.4",
"@turf/intersect": "^6.4.0",
"babelify": "^10.0.0",
"browserify": "^16.1.1",
"buffer": "^4.9.2",
"common-shakeify": "^0.6.2",
"core-js": "^3.7.0",
"cssnano": "^4.1.10",
"debounce": "^1.2.1",
"electron": "^16.0.3",
"electron-packager": "^15.4.0",
"fs-extra": "^9.0.1",
"geotiff": "^1.0.4",
"geotiff-geokeys-to-proj4": "^2024.3.9",
"http-server": "^0.12.3",
"keyboardevent-key-polyfill": "^1.1.0",
"leaflet": "~1.7.1",
"leaflet-draw": "^1.0.4",
"leaflet-draw-locales": "^1.2.1",
"leaflet.coordinates": "~0.1.5",
"leaflet.geodesic": "github:matafokka/Leaflet.Geodesic",
"minisearch": "^4.0.3",
"package-json-versionify": "^1.0.4",
"persistify": "^2.0.1",
"polybooljs": "^1.2.0",
"postcss": "^8.2.4",
"postcss-preset-env": "^6.7.0",
"proj4": "^2.7.4",
"regenerator-runtime": "^0.13.7",
"roman-numerals": "^0.3.2",
"shpjs": "^3.6.3",
"uglifyify": "^5.0.2",
"watchify": "^3.11.0",
"webworkify": "^1.5.0"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"leaflet-advanced-layer-system": "^2.2.10"
}
}