a2s.su/package.json

34 lines
1.1 KiB
JSON

{
"private": true,
"name": "a2s",
"version": "0.0.0",
"description": "ololo",
"scripts": {
"develop": "npm run clean; npm run link-static; npm run watch-app",
"watch-app": "npx parcel watch --dist-dir dev/ app/index.html",
"build": "npm run clean; npm run build-app; npm run git-hash",
"build-app": "npx parcel build --no-cache --no-source-maps --no-optimize --no-content-hash --dist-dir dist/ app/index.html",
"prettier": "npx prettier --write .",
"link-static": "ln -s $(pwd)/pages/ dev/pages; ln -s $(pwd)/static/* dev/;",
"git-hash": "./update_commit.sh",
"clean": "rm -rf ./dev/* ./dist/* &> /dev/null"
},
"author": "Alexander Popov <iiiypuk@fastmail.fm>",
"license": "WTFPL",
"devDependencies": {
"@parcel/packager-raw-url": "^2.9.3",
"@parcel/transformer-posthtml": "^2.9.3",
"@parcel/transformer-webmanifest": "^2.9.3",
"parcel": "^2.9.3",
"parcel-resolver-ignore": "^2.1.5",
"posthtml-include": "^1.7.4",
"prettier": "3.0.1"
},
"parcelIgnore": [
"bootstrap-v5.3.1.min.css",
"bootstrap-v5.3.1.min.js",
"favicon.png",
"humans.txt"
]
}