forked from enable3d/enable3d-phaser-project-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.25 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.25 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "phaser-project-template",
"version": "1.0.0",
"description": "enable3d + Phaser 3 starter template",
"homepage": "https://github.com/yandeu/phaser-project-template#readme",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack/webpack.dev.js",
"build": "webpack --config webpack/webpack.prod.js",
"serve": "serve dist",
"deploy": "gh-pages -d dist"
},
"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",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@enable3d/phaser-extension": "~0.25.3",
"@fortawesome/fontawesome-free": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/material": "^6.0.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"axios": "^1.7.5",
"firebase": "^10.13.0",
"formik": "^2.4.6",
"matter-js": "^0.19.0",
"phaser": "~3.55.2",
"poly-decomp": "^0.3.0",
"postcss": "^8.4.41",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"redux": "^5.0.1",
"tailwindcss": "^3.4.10",
"three": "~0.144.0"
},
"devDependencies": {
"@types/node": "^18.19.46",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^7.1.2",
"gh-pages": "^6.1.1",
"html-webpack-plugin": "^5.5.0",
"serve": "^14.2.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-obfuscator": "^3.5.1",
"workbox-webpack-plugin": "^6.5.4"
}
}