-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.26 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
{
"name": "template-react-ts",
"description": "A Phaser 3 TypeScript project template that demonstrates React communication and uses Vite for bundling.",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-react-ts.git"
},
"author": "Phaser Studio <support@phaser.io> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-react-ts/issues"
},
"homepage": "https://github.com/phaserjs/template-react-ts#readme",
"keywords": [
"phaser",
"phaser3",
"react",
"vite",
"typescript"
],
"scripts": {
"dev": "node log.js dev & vite --config vite/config.dev.mjs",
"build": "node log.js build & vite build --config vite/config.prod.mjs",
"dev-nolog": "vite --config vite/config.dev.mjs",
"build-nolog": "vite build --config vite/config.prod.mjs"
},
"dependencies": {
"@dimforge/rapier2d-compat": "^0.18.0",
"@honeycomb-protocol/edge-client": "^0.0.7-beta.15",
"@reown/appkit": "^1.7.18",
"@reown/appkit-adapter-wagmi": "^1.7.18",
"@solana/wallet-adapter-base": "^0.9.27",
"@solana/wallet-adapter-react": "^0.15.39",
"@solana/wallet-adapter-react-ui": "^0.9.39",
"@solana/wallet-adapter-wallets": "^0.19.37",
"@solana/web3.js": "^1.98.4",
"@tanstack/react-query": "^5.84.2",
"bs58": "^6.0.0",
"ethers": "^6.15.0",
"git": "^0.1.5",
"phaser": "^3.90.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"uniqid": "^5.4.0",
"viem": "^2.33.3",
"wagmi": "^2.16.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/uniqid": "^5.3.4",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"terser": "^5.28.1",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1"
}
}