-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 859 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
{
"name": "phaser3-tilemap-pack",
"version": "1.0.0",
"description": "A Phaser 3 Tilemap & File Pack Template",
"main": "src/index.js",
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "npm run dev && webpack-dev-server --port=8000 --mode development"
},
"repository": {
"type": "git",
"url": "https://github.com/B3L7/phaser3-tilemap-pack"
},
"author": "B3L7",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/B3L7/phaser3-tilemap-pack/issues"
},
"homepage": "",
"devDependencies": {
"ts-loader": "^4.5.0",
"typescript": "^3.0.1",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"phaser": "^3.9.0"
}
}