-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "blocked",
"version": "0.0.0",
"description": "Blocked game",
"homepage": "https://github.com/PeterGoedeke/blocked",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack/webpack.dev.js",
"build": "rimraf dist && webpack --config webpack/webpack.prod.js",
"bundle": "npm run build",
"serve": "serve dist",
"format": "prettier --check src/scripts/**",
"format:write": "prettier --write src/scripts/**"
},
"keywords": [
"Phaser",
"Phaser 3",
"Phaser3",
"html5 game",
"TypeScript",
"webpack",
"starter"
],
"repository": {
"type": "git",
"url": "https://github.com/PeterGoedeke/blocked"
},
"engines": {
"node": ">=12"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"copy-webpack-plugin": "^9.0.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"html-webpack-plugin": "^5.2.0",
"javascript-obfuscator": "^2.9.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"serve": "^12.0.0",
"ts-loader": "^9.2.4",
"typescript": "^4.3.0",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpack-obfuscator": "^3.2.0",
"workbox-webpack-plugin": "^6.0.2"
},
"dependencies": {
"axios": "^0.24.0",
"phaser": "^3.55.2",
"phaser3-swipe-plugin": "^1.0.6"
}
}