2025-02-15 19:21:00 +01:00
|
|
|
{
|
|
|
|
"name": "breakout.lecaro.me",
|
|
|
|
"version": "1.0.0",
|
2025-03-13 09:31:22 +01:00
|
|
|
"description": "A roguelite take on the breakout genre, optimised for short runs and replayability.",
|
2025-02-15 19:21:00 +01:00
|
|
|
"scripts": {
|
2025-03-13 10:02:49 +01:00
|
|
|
"start": "rm -rf .parcel-cache && run-p dev:*",
|
2025-03-13 14:14:00 +01:00
|
|
|
"dev:game-fe": "parcel src/*.html --lazy --no-hmr",
|
2025-03-13 09:31:22 +01:00
|
|
|
"dev:editor-be": "nodemon editserver.js --watch editserver.js",
|
2025-03-13 16:43:00 +01:00
|
|
|
"dev:watch-tests": "jest watch",
|
2025-03-13 09:31:22 +01:00
|
|
|
"build": "rm -f dist/* && parcel build src/index.html"
|
2025-02-15 19:21:00 +01:00
|
|
|
},
|
2025-03-13 10:02:49 +01:00
|
|
|
"browserslist": "since 2009",
|
2025-03-13 09:31:22 +01:00
|
|
|
"author": "Renan LE CARO",
|
|
|
|
"license": "GNU AGPLv3",
|
2025-03-13 16:43:00 +01:00
|
|
|
"dependencies": {
|
2025-03-13 09:31:22 +01:00
|
|
|
"@parcel/transformer-less": "^2.13.3",
|
2025-03-13 16:43:00 +01:00
|
|
|
"@types/react": "^19.0.10",
|
|
|
|
"@types/react-dom": "^19.0.4",
|
2025-02-15 19:21:00 +01:00
|
|
|
"body-parser": "^1.20.3",
|
|
|
|
"express": "^4.21.2",
|
2025-03-13 16:43:00 +01:00
|
|
|
"http-server": "^14.1.1",
|
2025-03-13 09:31:22 +01:00
|
|
|
"nodemon": "^3.1.9",
|
|
|
|
"npm-run-all": "^4.1.5",
|
2025-03-05 22:10:17 +01:00
|
|
|
"parcel": "^2.13.3",
|
2025-03-13 16:43:00 +01:00
|
|
|
"process": "^0.11.10",
|
|
|
|
"react": "^19.0.0",
|
|
|
|
"react-dom": "^19.0.0",
|
2025-03-05 22:10:17 +01:00
|
|
|
"svgo": "^3.3.2"
|
2025-02-15 19:21:00 +01:00
|
|
|
}
|
|
|
|
}
|