mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-05-11 14:01:31 -04:00
wip
This commit is contained in:
parent
722637f11f
commit
0759981a55
21 changed files with 3294 additions and 251 deletions
22
package.json
22
package.json
|
@ -1,21 +1,23 @@
|
|||
{
|
||||
"name": "breakout.lecaro.me",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"description": "A roguelite take on the breakout genre, optimised for short runs and replayability.",
|
||||
"scripts": {
|
||||
"start": "parcel src/index.html",
|
||||
"build": "rm -f dist/* && parcel build src/index.html",
|
||||
"editor": "nodemon editserver.js --watch editserver.js"
|
||||
"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": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"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"
|
||||
},
|
||||
"devDependencies": {
|
||||
"nodemon": "^3.1.9",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"parcel": "^2.13.3",
|
||||
"svgo": "^3.3.2"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue