mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-05-11 22:11:31 -04:00
24 lines
783 B
JSON
24 lines
783 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": "run-p dev:*",
|
|
"dev:game-fe": "parcel --port 1234 --open src/index.html",
|
|
"dev:editor-fe": "parcel --port 4401 --open editor/index.html",
|
|
"dev:editor-be": "nodemon editserver.js --watch editserver.js",
|
|
"build": "rm -f dist/* && parcel build src/index.html"
|
|
},
|
|
"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"
|
|
}
|
|
}
|