-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 924 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": "myrelaygame",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "8.11.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"devbuild": "webpack --mode development --entry ./src/index.js --output ./dist/bundle.js --config webpack.config.js",
"build": "webpack --mode production --entry ./src/index.js --output ./dist/bundle.js --config webpack.config.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@orange-games/phaser-input": "^2.0.5",
"babel-loader": "^8.0.2",
"browser-sync": "^2.24.7",
"browser-sync-webpack-plugin": "^2.2.2",
"express": "^4.16.3",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"phaser": "^3.15.1"
}
}