-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.23 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
70
{
"name": "phaser-3-sanbox",
"description": "Phaser 3 & Webpack 4 Sandbox",
"version": "0.1.0",
"authors": [
"Rex Twedt",
"Mike Hadley"
],
"license": "MIT",
"homepage": "https://github.com/sporadic-labs/phaser-3-sandbox.git#readme.md",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.1.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"expose-loader": "^0.7.5",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"glslify": "^7.0.0",
"glslify-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"node-sass": "^4.11.0",
"phaser": "^3.16.2",
"prettier": "^1.16.4",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"sass-loader": "^7.1.0",
"store": "^2.0.12",
"style-loader": "^0.23.1",
"typescript": "^3.3.3333",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"prettier": {
"printWidth": 100
},
"scripts": {
"update-types": "curl https://raw.githubusercontent.com/photonstorm/phaser3-docs/master/typescript/phaser.d.ts --create-dirs --location --output ./types/phaser.d.ts",
"postinstall": "npm run update-types",
"build": "webpack --mode production",
"dev": "webpack-dev-server --mode development --open",
"dev:production": "webpack-dev-server --mode production --open",
"clean": "rm -rf ./public",
"predeploy": "npm run clean && npm run build",
"deploy": "gh-pages --dist public --dest .",
"prettier": "prettier --write ./src/js/**/*.{js,jsx,json}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sporadic-labs/phaser-3-sandbox.git"
},
"bugs": {
"url": "https://github.com/sporadic-labs/phaser-3-sandbox.git/issues"
},
"dependencies": {}
}