-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "rmit-sgs-network-game",
"version": "0.4.1",
"description": "Demonstration for Assignment 3, COSC2083 \"Introduction to Information Technology\" - RMIT VN, Semester 2020C",
"main": "game.js",
"scripts": {
"build": "webpack --config webpack/prod.js ",
"start": "webpack-dev-server --config webpack/base.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuri-team/rmit-sgs-network-game.git"
},
"keywords": [
"html5",
"phaser",
"3",
"game",
"side-scroller"
],
"author": "Mike Vo, Team Kuri",
"license": "MIT",
"bugs": {
"url": "https://github.com/kuri-team/rmit-sgs-network-game/issues"
},
"homepage": "https://github.com/kuri-team/rmit-sgs-network-game#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.7.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"raw-loader": "^3.1.0",
"terser-webpack-plugin": "^2.2.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
}