pixelbattle/package.json

30 lines
657 B
JSON
Raw Normal View History

2023-07-30 11:50:12 +03:00
{
"name": "pixelbattle",
"version": "1.0.0",
"description": "Self-hosted pixelbattle written in NodeJS",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
2023-08-01 15:30:53 +03:00
"dev": "nodemon src/index.js",
"prod": "node src/index.js"
2023-07-30 11:50:12 +03:00
},
"repository": {
"type": "git",
"url": "https://git.foxarmy.org/leca/pixelbattle"
},
"keywords": [
"pixelbattle",
"selfhosted"
],
"author": "leca",
"license": "GPL-3.0-or-later",
"dependencies": {
"express": "^4.18.2",
"jimp": "^0.22.10",
"nodemon": "^3.0.1",
2023-08-01 09:25:16 +03:00
"pug": "^3.0.2",
"ws": "^8.13.0"
}
2023-07-30 11:50:12 +03:00
}