-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.99 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
{
"name": "phaser-typescript-webpack",
"version": "1.1.2",
"description": "A good place to get started with Phaser and TypeScript development",
"scripts": {
"start": "webpack serve --config webpack.dev.config.js --mode development --progress",
"build": "npm run check && npm run transpile",
"transpile": "rimraf ./dist && webpack --config webpack.prod.config.js --mode production --progress",
"tsc": "tsc --noemit --project tsconfig.json",
"lint": "eslint --ext .js,.ts src --color",
"lint:fix": "eslint --fix --ext .js,.ts src --color",
"check": "npm run lint && npm run tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/numbofathma/phaser-typescript-webpack.git"
},
"engines": {
"node": ">= 7.0.0"
},
"author": "Costin Mirica <[email protected]> (https://www.costinmirica.com/)",
"license": "MIT",
"homepage": "https://github.com/numbofathma/phaser-typescript-webpack",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-typescript": "^7.23.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@types/howler": "^2.2.11",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-webpack-plugin": "^4.1.0",
"expose-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"javascript-obfuscator": "^4.1.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3",
"webpack-obfuscator": "^3.5.1"
},
"dependencies": {
"howler": "^2.2.4",
"phaser-ce": "^2.20.0"
}
}