-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.33 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
34
35
36
37
38
{
"name": "template-rollup",
"version": "1.2.0",
"description": "A Phaser 3 template using Rollup.",
"scripts": {
"dev": "rollup --watch --config rollup/rollup.config.dev.mjs --no-treeshake",
"build": "rollup --config rollup/rollup.config.prod.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-rollup.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-rollup/issues"
},
"homepage": "https://github.com/phaserjs/template-rollup#readme",
"dependencies": {
"phaser": "^3.87.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^8.0.2",
"rollup": "^4.17.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-glslify": "^1.3.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.1"
}
}