forked from bhgsbatista/phaser3-typescript-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.44 KB
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
39
40
41
42
{
"name": "phaser3-typescript-project-template",
"version": "1.0.4",
"description": "A Phaser 3 Project Template using Rollup and TypeScript",
"main": "src/game.ts",
"scripts": {
"start": "rollup --watch --config rollup.config.dev.js",
"lint": "tsc --noEmit && eslint 'src/*.ts' --quiet --fix",
"build": "rollup --config rollup.config.dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photonstorm/phaser3-typescript-project-template.git"
},
"author": "Richard Davey <rich@photonstorm.com> (http://www.photonstorm.com)",
"contributors": [
"Thomas Amar <hello@ebabel.eu> (https://ebabel.eu)"
],
"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-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"phaser": "^3.22.0",
"prettier": "^2.0.4",
"rollup": "^1.29.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^3.8.3"
}
}