mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-20 04:05:06 -04:00
24 lines
753 B
JSON
24 lines
753 B
JSON
{
|
|
"name": "breakout.lecaro.me",
|
|
"version": "1.0.0",
|
|
"description": "A roguelite take on the breakout genre, optimised for short runs and replayability.",
|
|
"scripts": {
|
|
"start": "rm -rf .parcel-cache && run-p dev:*",
|
|
"dev:game-fe": "parcel src/*.html --lazy",
|
|
"dev:editor-be": "nodemon editserver.js --watch editserver.js",
|
|
"build": "rm -f dist/* && parcel build src/index.html"
|
|
},
|
|
"browserslist": "since 2009",
|
|
"author": "Renan LE CARO",
|
|
"license": "GNU AGPLv3",
|
|
"devDependencies": {
|
|
"@parcel/transformer-less": "^2.13.3",
|
|
"body-parser": "^1.20.3",
|
|
"express": "^4.21.2",
|
|
"http-server": "^14.1.1",
|
|
"nodemon": "^3.1.9",
|
|
"npm-run-all": "^4.1.5",
|
|
"parcel": "^2.13.3",
|
|
"svgo": "^3.3.2"
|
|
}
|
|
}
|