25 lines
855 B
JSON
25 lines
855 B
JSON
{
|
|
"private": true,
|
|
"name": "a2s",
|
|
"version": "0.0.0",
|
|
"description": "ololo",
|
|
"scripts": {
|
|
"develop": "npm run clean; ln -s pages/ dev/pages/; 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 .",
|
|
"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-webmanifest": "^2.9.3",
|
|
"parcel": "^2.9.3",
|
|
"posthtml-include": "^1.7.4",
|
|
"prettier": "3.0.1"
|
|
}
|
|
}
|