Remove unnecessary npx calls in package.json

This commit is contained in:
Adam Goldsmith 2022-03-03 16:14:21 -05:00
parent e9d6d0a733
commit a7a5daeacf

View File

@ -22,9 +22,9 @@
"monkeyPatch": "sed -i '8s| APRSIS| //APRSIS|' node_modules/aprs-parser/lib/index.js", "monkeyPatch": "sed -i '8s| APRSIS| //APRSIS|' node_modules/aprs-parser/lib/index.js",
"serve": "node src/server.js", "serve": "node src/server.js",
"prestart": "npm run monkeyPatch", "prestart": "npm run monkeyPatch",
"start": "npx parcel src/index.html", "start": "parcel src/index.html",
"prebuild": "npm run monkeyPatch", "prebuild": "npm run monkeyPatch",
"build": "npx parcel build --public-url ./ src/index.html" "build": "parcel build --public-url ./ src/index.html"
}, },
"author": "Adam Goldsmith <contact@adamgoldsmith.name>", "author": "Adam Goldsmith <contact@adamgoldsmith.name>",
"license": "ISC" "license": "ISC"