-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.68 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
{
"name": "phaser-project-template",
"version": "3.55.2",
"description": "Phaser 3 starter template with TypeScript and webpack.",
"homepage": "https://github.com/yandeu/phaser-project-template#readme",
"main": "index.js",
"private": true,
"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 --check src/scripts/**",
"format:write": "prettier --write src/scripts/**"
},
"keywords": [
"Phaser",
"Phaser 3",
"Phaser3",
"html5 game",
"TypeScript",
"webpack",
"starter"
],
"author": {
"name": "KeJun",
"url": "https://github.com/KeJunMao"
},
"repository": {
"type": "git",
"url": "https://github.com/KeJunMao/emoji-survival-game"
},
"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",
"dependencies": {
"phaser": "^3.55.2",
"phaser3-rex-plugins": "^1.1.66"
},
"devDependencies": {
"@yandeu/prettier-config": "^0.0.3",
"copy-webpack-plugin": "^10.1.0",
"html-webpack-plugin": "^5.5.0",
"javascript-obfuscator": "^3.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"serve": "^13.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0",
"webpack-obfuscator": "^3.5.0",
"workbox-webpack-plugin": "^6.4.2"
}
}