mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-20 04:05:06 -04:00
30 lines
943 B
JSON
30 lines
943 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 --no-hmr",
|
|
"dev:editor-be": "nodemon editserver.js --watch editserver.js",
|
|
"dev:watch-tests": "jest watch",
|
|
"build": "rm -f dist/* && parcel build src/index.html"
|
|
},
|
|
"browserslist": "since 2009",
|
|
"author": "Renan LE CARO",
|
|
"license": "GNU AGPLv3",
|
|
"dependencies": {
|
|
"@parcel/transformer-less": "^2.13.3",
|
|
"@types/react": "^19.0.10",
|
|
"@types/react-dom": "^19.0.4",
|
|
"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",
|
|
"process": "^0.11.10",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"svgo": "^3.3.2"
|
|
}
|
|
}
|