-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
{
"name": "phaser3-webpack5-typescript-template",
"version": "0.1.0",
"description": "Phaser 3.87, Webpack 5, and TypeScript template",
"main": "src/ts/game.ts",
"private": true,
"scripts": {
"start": "webpack-dev-server",
"build:dev": "webpack",
"build:prod": "webpack --config webpack.config.prod.ts",
"eslint": "eslint **/*.ts",
"eslint:fix": "eslint --fix **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavle-goloskokovic/phaser3-webpack5-typescript-template.git"
},
"keywords": [
"phaser",
"type",
"script",
"typescript",
"boilerplate",
"template",
"gamedev",
"game",
"development",
"javascript",
"webpack"
],
"author": "Pavle Goloskoković",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavle-goloskokovic/phaser3-webpack5-typescript-template/issues"
},
"homepage": "https://github.com/pavle-goloskokovic/phaser3-webpack5-typescript-template#readme",
"dependencies": {
"phaser": "^3.87.0",
"stats.js": "^0.17.0"
},
"devDependencies": {
"@types/gtag.js": "^0.0.20",
"@types/node": "^22.10.5",
"@types/stats.js": "^0.17.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"ejs-compiled-loader": "^3.1.0",
"eslint": "^8.57.1",
"eslint-plugin-brace-rules": "^0.1.6",
"html-inline-css-webpack-plugin": "^1.11.2",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
}
}