-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 970 Bytes
/
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
{
"name": "phaser3-es6-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development --entry ./src/game.js",
"build": "webpack --mode production --entry ./src/game.js --output-path ./dist",
"dev": "webpack --mode development --entry ./src/game.js --output-path ./dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.1",
"html-loader": "^2.1.1",
"html-webpack-plugin": "^5.3.0",
"mini-css-extract-plugin": "^1.3.9",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"moment": "^2.29.3",
"pathfinding": "^0.4.18",
"peerjs": "^1.3.2",
"phaser": "^3.55.2",
"phaser-raycaster": "^0.10.2"
}
}