generated from yandeu/phaser-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.7 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "phaser-project-template",
"version": "3.53.1",
"description": "Phaser 3 starter template with TypeScript and webpack.",
"homepage": "https://github.com/yandeu/phaser-project-template#readme",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack/webpack.dev.js",
"build": "rimraf dist && webpack --config webpack/webpack.prod.js",
"bundle": "npm run build",
"serve": "serve dist",
"format": "prettier-eslint \"src/**/*.ts\"",
"format:write": "prettier-eslint \"src/**/*.ts\" --write"
},
"keywords": [
"Phaser",
"Phaser 3",
"Phaser3",
"html5 game",
"TypeScript",
"webpack",
"starter"
],
"author": {
"name": "Yannick Deubel",
"url": "https://github.com/yandeu"
},
"repository": {
"type": "git",
"url": "https://github.com/yandeu/phaser-project-template.git"
},
"template": {
"name": "phaser-project-template",
"url": "https://github.com/yandeu/phaser-project-template",
"author": "Yannick Deubel (https://github.com/yandeu)"
},
"engines": {
"node": ">=12"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@yandeu/prettier-config": "^0.0.1",
"copy-webpack-plugin": "^8.0.0",
"eslint": "^7.25.0",
"html-webpack-plugin": "^5.2.0",
"javascript-obfuscator": "^2.9.5",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"rimraf": "^3.0.2",
"serve": "^11.3.2",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.7.3",
"webpack-obfuscator": "^3.2.0",
"workbox-webpack-plugin": "^6.0.2"
},
"dependencies": {
"phaser": "^3.53.1"
}
}