-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.05 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
62
63
64
65
66
67
68
69
{
"name": "phaser3-webpack",
"title": "game-name",
"url": "https://github.com/otorexia/phaser3-webpack ♥♥♥",
"version": "1.2.0",
"description": "A basic webpack based Phaser 3 template",
"scripts": {
"build:web": "node webpack.prod.web.js",
"build:plugin": "node webpack.prod.plugin.js",
"start": "node webpack.dev.js",
"test": "mocha",
"update:phaser": "npm install phaser@latest --save && node ./configs/update.ts.js"
},
"repository": {
"type": "git",
"url": "git@github.com:otorexia/phaser3-webpack.git"
},
"license": "MIT",
"author": "Oto Rexia <otorexia@outlook.com> (https://otorexia.github.io)",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"clean-webpack-plugin": "^1.0.0",
"colors": "^1.3.2",
"copy-webpack-plugin": "^4.6.0",
"create-file": "^1.0.1",
"create-index": "^2.3.0",
"download-file": "^0.1.5",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"expose-loader": "^0.7.5",
"favicons-webpack-plugin": "0.0.9",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"imagemin-webpack-plugin": "^2.3.0",
"mocha": "^5.2.0",
"portfinder": "^1.0.19",
"prettier": "^1.15.2",
"raw-loader": "^0.5.1",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.25.1",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4",
"webpack-spritesmith": "^0.5.4",
"zip-webpack-plugin": "^3.0.0"
},
"dependencies": {
"phaser": "^3.15.1"
},
"babel": {
"plugins": [
"@babel/plugin-syntax-dynamic-import"
],
"presets": [
"@babel/preset-env"
]
},
"private": true
}