-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "AtticRadar",
"main": "main.js",
"scripts": {
"build": "browserify -t brfs app/core/entry/entry.js -p [ glslify-require ] -o dist/bundle.js; uglifyjs dist/bundle.js -m -o dist/bundle.js; ./tools/size.sh",
"serve": "watchify -t brfs app/core/entry/entry.js -p [ glslify-require ] -o dist/bundle.js -v",
"start": "electron .",
"package": "npx electron-packager . --overwrite --icon ./icons/icon.icns"
},
"dependencies": {
"@turf/turf": "^6.5.0",
"aewx-metar-parser": "^1.0.0",
"brfs": "^2.0.2",
"bufferpack": "^0.0.6",
"cheap-ruler": "^3.0.2",
"chroma-js": "^2.4.2",
"glslify-require": "^1.1.0",
"luxon": "^3.0.3",
"metar-plot": "^2.0.0",
"pako": "^2.1.0",
"papaparse": "^5.4.1",
"pngjs": "^6.0.0",
"seek-bzip": "^2.0.0",
"shelljs": "^0.8.5",
"webworkify": "^1.5.0"
},
"devDependencies": {
"electron": "^21.2.0",
"electron-packager": "^17.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1"
},
"engines": {
"node": ">=13.0.0"
}
}