-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 884 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 884 Bytes
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
{
"name": "phaser3-react",
"version": "1.2.5",
"description": "a phaser plugin to make working with react ezpz",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"repository": "https://github.com/KingCosmic/phaser-react",
"author": "Austyn Studdard <KingCosmicDev@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack -p ./src/index.ts"
},
"dependencies": {
"@types/react": "^16.9.31",
"eventemitter3": "^4.0.0"
},
"devDependencies": {
"@types/react-dom": "^16.9.6",
"@types/webpack": "^4.41.10",
"phaser": "^3.22.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"phaser": "^3.22.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}