2023-08-03 21:18:50 +03:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"name": "a2s",
|
2023-08-19 03:18:03 +03:00
|
|
|
"version": "0.0.0",
|
2023-08-03 21:18:50 +03:00
|
|
|
"description": "ololo",
|
|
|
|
"scripts": {
|
2023-08-19 04:14:43 +03:00
|
|
|
"develop": "npm run clean; npm run link-static; npm run watch-app",
|
2023-08-19 03:18:03 +03:00
|
|
|
"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",
|
2023-08-03 21:18:50 +03:00
|
|
|
"prettier": "npx prettier --write .",
|
2023-08-19 04:14:43 +03:00
|
|
|
"link-static": "ln -s $(pwd)/pages/ dev/pages; ln -s $(pwd)/static/* dev/;",
|
2023-08-04 00:45:01 +03:00
|
|
|
"git-hash": "./update_commit.sh",
|
2023-08-19 03:18:03 +03:00
|
|
|
"clean": "rm -rf ./dev/* ./dist/* &> /dev/null"
|
2023-08-03 21:18:50 +03:00
|
|
|
},
|
|
|
|
"author": "Alexander Popov <iiiypuk@fastmail.fm>",
|
|
|
|
"license": "WTFPL",
|
|
|
|
"devDependencies": {
|
|
|
|
"@parcel/packager-raw-url": "^2.9.3",
|
2023-08-19 04:09:45 +03:00
|
|
|
"@parcel/transformer-posthtml": "^2.9.3",
|
2023-08-03 21:18:50 +03:00
|
|
|
"@parcel/transformer-webmanifest": "^2.9.3",
|
|
|
|
"parcel": "^2.9.3",
|
2023-08-19 04:09:45 +03:00
|
|
|
"parcel-resolver-ignore": "^2.1.5",
|
2023-08-03 21:18:50 +03:00
|
|
|
"posthtml-include": "^1.7.4",
|
|
|
|
"prettier": "3.0.1"
|
2023-08-19 04:09:45 +03:00
|
|
|
},
|
|
|
|
"parcelIgnore": [
|
|
|
|
"bootstrap-v5.3.1.min.css",
|
|
|
|
"bootstrap-v5.3.1.min.js",
|
|
|
|
"favicon.png",
|
|
|
|
"humans.txt"
|
|
|
|
]
|
2023-08-03 21:18:50 +03:00
|
|
|
}
|