Phaser 3 Template Setup (no start script)

Termux
node -v v12.13.0 npm -v
6.14.4
I’m trying to set up a Phaser 3 development environment in Termux with Node.js, npm and the Phaser 3 Template (ES6) but after installing the template ‘npm start’ returned ‘no start script’.
When I installed the template I got a warning about no repository field and a notice about the availability of an npm patch (6.14.5).

cat package.json { "name": "phaser3", "version": "1.0.0", "description": "phaser3.23 testing", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "phaser" ], "author": "", "license": "ISC", "dependencies": { "phaser": "^3.23.0" }, "devDependencies": { "phaser3-project-template": "^1.0.9" } } npm -v
6.14.4
$ npm install
npm WARN phaser3@1.0.0 No repository field.

audited 16 packages in 2.541s
found 0 vulnerabilities

$ npm start
npm ERR! missing script: start

npm ERR! A complete log of this run can be found in:
npm ERR! /data/data/com.termux/files/home/.npm/_logs/2020-06-22T15_40_42_224Z-debug.log
$

Do npm run to list the scripts.

node_modules
cd phaser3 ls
node_modules package.json
package-lock.json
npm run Lifecycle scripts included in phaser3: test echo "Error: no test specified" && exit 1

Oh, you want to clone the template instead and install from there. Start over:

git clone 'https://github.com/photonstorm/phaser3-project-template.git' phaser3-game;
cd phaser3-game;
npm install;
npm start;

I got it working.
I installed Phaser 3 from NPM with npm i --save-dev
npm audit fix
npm start

… lines not shown
[./src/assets/logo.png] 82 bytes {main} [built]
[./src/index.js] 513 bytes {main} [built]
+ 20 hidden modules
Child html-webpack-plugin for “index.html”:
1 asset
Entrypoint undefined = index.html
[./node_modules/html-webpack-plugin/lib/loader.js!./index.html] 297 bytes {0} [built]
[./node_modules/lodash/lodash.js] 530 KiB {0} [built]
[./node_modules/webpack/buildin/global.js] (webpack)/buildin/global.js 472 bytes {0} [built]
[./node_modules/webpack/buildin/module.js] (webpack)/buildin/module.js 497 bytes {0} [built]
:information_source: 「wdm」: Compiled successfully.

I cloned the GitHub phaser3-template-project to my_project directory but when I did npm install from within the template directory I got a big list of files that could not be found:
npm WARN tar ENOENT: no such file or directory, open ‘/data/data/com.termux/files/home/my_project/phaser3-project-template/node_modules/.staging/lodash-56c654b5/fp/wrapperLodash.js’ npm WARN tar ENOENT: no such file or directory, open ‘/data/data/com.termux/files/home/my_project/phaser3-project-template/node_modules/.staging/lodash-c2adcc47/fp/wrapperLodash.js’ npm WARN tar ENOENT: no such file or directory, open ‘/data/data/com.termux/files/home/my_project/phaser3-project-template/node_modules/.staging/lodash-84bfd61a/fp/wrapperAt.js’ npm WARN tar ENOENT: no such file or directory, open ‘/data/data/com.termux/files/home/my_project/phaser3-project-template/node_modules/.staging/lodash-7f255b9b/fp/wrap.js’ npm WARN tar ENOENT: no such file or directory, open ‘/data/data/com.termux/files/home/my_project/phaser3-project-template/node_modules/.staging/lodash-970bbe6c/fp/wrapperChain.js’
Etc…

The node modules file is empty.

my_project phaser3 storage cd my_project ls
phaser3-project-template cd phaser3-project-template ls
LICENSE node_modules src README.md package-lock.json webpack index.html package.json $