-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"name": "template-react",
"description": "A Phaser 3 project template that demonstrates React communication and uses Vite for bundling.",
"version": "1.0.2",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-react.git"
},
"author": "Phaser Studio <[email protected]> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-react/issues"
},
"homepage": "https://github.com/phaserjs/template-react#readme",
"keywords": [
"phaser",
"phaser3",
"react",
"vite"
],
"scripts": {
"dev": "vite --config vite/config.dev.mjs",
"build": "vite build --config vite/config.prod.mjs"
},
"dependencies": {
"phaser": "^3.80.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"terser": "^5.28.1",
"vite": "^5.1.4"
}
}