-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
37 lines (37 loc) · 905 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
35
36
37
{
"name": "phaser3example",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "node server.js",
"postinstall": "webpack",
"deploy": "git push origin master && git push heroku master"
},
"keywords": [
"Phaser 3",
"HTML5 Game",
"Javascript Game development"
],
"author": "Shailendra Kumar",
"license": "MIT",
"dependencies": {
"express": "^4.16.4",
"phaser": "^3.3.0",
"webpack": "^4.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.23.6",
"browser-sync-webpack-plugin": "^2.2.2",
"copy-webpack-plugin": "^4.5.4",
"html-webpack-plugin": "^3.1.0",
"raw-loader": "^0.5.1",
"source-map-loader": "^0.2.4",
"webpack-cli": "^3.1.2"
}
}