Files
pikachu/package.json
T
2025-07-17 14:16:06 +07:00

49 lines
1.6 KiB
JSON

{
"name": "template-nextjs",
"version": "1.2.0",
"description": "A Phaser 3 Next.js project template that demonstrates Next.js with React communication and uses Vite for bundling.",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-nextjs.git"
},
"author": "Phaser Studio <support@phaser.io> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-nextjs/issues"
},
"homepage": "https://github.com/phaserjs/template-nextjs#readme",
"keywords": [
"phaser",
"phaser3",
"next",
"nextjs",
"vite",
"javascript"
],
"scripts": {
"dev": "node log.js dev & next dev -p 8080",
"build": "node log.js build & next build",
"dev-nolog": "next dev -p 8080",
"build-nolog": "next build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:i": "jest test/patterns/i-pattern.test.js",
"test:l": "jest test/patterns/l-pattern.test.js",
"test:u": "jest test/patterns/u-pattern.test.js",
"test:z": "jest test/patterns/z-pattern.test.js",
"test:verbose": "jest --verbose",
"test:silent": "jest --silent"
},
"dependencies": {
"next": "15.3.1",
"phaser": "^3.90.0",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"type": "module"
}