pat/web/package.json
Martin Hebnes Pedersen 8d20b92153 Remove image optimization step in web build stage
Resolves an issue with non-producable builds, and also removes a lot of
npm dependencies.

We only bundle a single image, and the original is less than 20 kB
already.
2025-09-19 11:47:43 +02:00

63 lines
1.7 KiB
JSON

{
"name": "pat",
"version": "0.15.0",
"private": true,
"description": "Pat is a cross platform Winlink client with basic messaging capabilities.",
"author": "martinhpedersen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/la5nta/pat.git"
},
"engines": {
"node": "18",
"npm": "10"
},
"bugs": {
"url": "https://github.com/la5nta/pat/issues"
},
"homepage": "https://getpat.io/",
"keywords": [
"pat",
"winlink",
"windows",
"mac",
"linux",
"ax25",
"pactor",
"ardop"
],
"scripts": {
"build": "webpack --mode=development --progress --hide-modules",
"clear": "del-cli dist",
"format": "prettier -w **",
"production": "webpack --mode=production --progress --hide-modules --devtool=source-maps",
"postinstall": "rm -rf node_modules/bootstrap-tokenfield/node_modules",
"start": "webpack-dev-server --mode=development --port=8081",
"watch": "webpack --mode=development --watch"
},
"dependencies": {
"bootstrap": "3.2.0",
"bootstrap-select": "1.7.5",
"bootstrap-tokenfield": "0.12.0",
"jquery": "3.6.0",
"urijs": "1.19.10"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^2.1.1",
"del-cli": "^3.0.1",
"mini-css-extract-plugin": "^0.7.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prettier": "^2.5.1",
"sass": "^1.60.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"svg-url-loader": "^2.3.3",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}