-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "phaser3-typescript-project-template",
"version": "1.0.2",
"description": "A Phaser 3 Project Template using Rollup and TypeScript",
"main": "src/game.ts",
"scripts": {
"dev": "rollup --config rollup.config.dev.js",
"build": "rollup --config rollup.config.dist.js",
"watch": "rollup --watch --config rollup.config.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photonstorm/phaser3-typescript-project-template.git"
},
"author": "Richard Davey <[email protected]> (http://www.photonstorm.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/photonstorm/phaser3-typescript-project-template/issues"
},
"homepage": "https://github.com/photonstorm/phaser3-typescript-project-template#readme",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-replace": "^2.3.4",
"phaser": "^3.50.0",
"rollup": "^2.35.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^4.1.3"
}
}