-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.16 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
59
60
61
{
"name": "phaser-3.14.0-boilerplate",
"version": "1.1.0",
"description": "Phaser 3.14.0 Boilerplate project for rapid development.",
"author": "Christian Holt (Sidaroth@protonmail.com)",
"main": "src/index.js",
"scripts": {
"default:start": "npm run clean && webpack --mode development",
"start": "webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && webpack --mode production",
"clean": "rimraf dist"
},
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"homepage": "https://sidaroth.no",
"repository": {
"type": "git",
"url": "git+https://github.com/sidaroth/Phaser3.Boilerplate.git"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^4.6.0",
"core-js": "^2.6.11",
"css-loader": "^1.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"expose-loader": "^0.7.5",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.1.0",
"html-webpack-template": "^6.1.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.14.1",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^2.3.2",
"rimraf": "^2.7.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.21.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"dat.gui": "^0.7.7",
"immutable": "^3.8.2",
"matter-js": "^0.14.2",
"phaser": "^3.24.1",
"stats-js": "^1.0.1"
}
}