-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.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
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
71
72
73
74
{
"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.16.0",
"@babel/preset-env": "^7.16.4",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.1.0",
"core-js": "^3.19.3",
"css-loader": "^6.5.1",
"easystarjs": "^0.4.4",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"expose-loader": "^3.1.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"html-webpack-plugin": "^5.5.0",
"lodash.throttle": "^4.1.1",
"mini-css-extract-plugin": "^2.4.5",
"mobx": "^6.3.8",
"phaser": "^3.55.2",
"prettier": "^2.5.1",
"regenerator-runtime": "^0.13.9",
"sass": "^1.45.0",
"sass-loader": "^12.4.0",
"store": "^2.0.12",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"prettier": {
"printWidth": 100
},
"scripts": {
"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/**/*.{ts,js,jsx,json}",
"check-types": "tsc --noEmit --project tsconfig.json",
"lint": "eslint --fix --config .eslintrc.js src"
},
"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": {
"@types/lodash.throttle": "^4.1.6",
"@types/store": "^2.0.2",
"bezier-easing": "^2.1.0",
"phaser3-nineslice": "^0.5.0"
}
}