-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.58 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "phaser-project-template-es6",
"version": "3.17.0",
"description": "Phaser 3 starter template with ES6 and webpack.",
"homepage": "https://github.com/yandeu/phaser-project-template-es6#readme",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack/webpack.dev.js",
"build": "webpack --config webpack/webpack.prod.js"
},
"keywords": [
"Phaser",
"Phaser 3",
"Phaser3",
"html5 game",
"TypeScript",
"webpack",
"starter"
],
"author": {
"name": "Yannick Deubel",
"url": "https://github.com/yandeu"
},
"repository": {
"type": "git",
"url": "https://github.com/yandeu/phaser-project-template-es6.git"
},
"template": {
"name": "phaser-project-template-es6",
"url": "https://github.com/yandeu/phaser-project-template-es6",
"author": "Yannick Deubel (https://github.com/yandeu)"
},
"engines": {
"node": ">=8.0.0"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1",
"webpack-obfuscator": "^0.18.0",
"workbox-webpack-plugin": "^4.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"phaser": "^3.17.0"
}
}