space-smasher-9001/game/package.json

38 lines
995 B
JSON
Raw Permalink Normal View History

2021-10-12 15:30:05 +02:00
{
2021-10-17 18:27:54 +02:00
"name": "hs3jam-space-smasher-9001",
2021-10-12 15:30:05 +02:00
"version": "1.0.0",
"description": "Simple Phaser 3 game for the Hackerspace Trójmiasto's little game jam",
"scripts": {
"start": "parcel src/index.html -p 8000",
2021-10-18 03:09:28 +02:00
"build": "parcel build src/index.html --out-dir dist --no-source-maps"
2021-10-12 15:30:05 +02:00
},
"author": "Grzegorz Kupczyk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ourcade/phaser3-parcel-template.git"
},
"homepage": "https://github.com/ourcade/phaser3-parcel-template",
"devDependencies": {
2023-03-01 03:36:09 +01:00
"@types/node": "^18.14.2",
2021-10-12 15:30:05 +02:00
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"minimist": ">=1.2.2",
"parcel-bundler": "^1.12.5",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.4.3",
"typescript": "^3.8.3"
},
"dependencies": {
"phaser": "^3.55.2"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}