-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "mmo-phaser-es6",
"version": "1.0.0",
"description": "ES6 version of basic-mmo-phaser by Jerome Renaux",
"main": "server.js",
"scripts": {
"start": "nodemon server.js --exec babel-node --presets es2015,stage-2",
"dev": "webpack --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TVScoundrel/mmo-phaser-es6.git"
},
"author": "Tom Van Schoor",
"license": "ISC",
"bugs": {
"url": "https://github.com/TVScoundrel/mmo-phaser-es6/issues"
},
"homepage": "https://github.com/TVScoundrel/mmo-phaser-es6#readme",
"dependencies": {
"express": "^4.15.3",
"phaser": "^2.6.2",
"socket.io": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"html-webpack-plugin": "^2.28.0",
"mocha": "^3.4.1",
"nodemon": "^1.11.0",
"webpack": "^2.5.1"
}
}