-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
{
"name": "roguelike",
"version": "1.5.1",
"description": "Phaser 3 starter template with TypeScript and webpack.",
"homepage": "https://github.com/yandeu/phaser-project-template#readme",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack/webpack.dev.js",
"build": "webpack --config webpack/webpack.prod.js",
"deploy": "npm run build && gh-pages -d dist",
"format": "prettier --write src",
"version": "npm run deploy"
},
"lint-staged": {
"src/**/*.ts": "prettier --write"
},
"husky": {
"hooks": {}
},
"keywords": [
"Phaser",
"Phaser 3",
"Phaser3",
"html5 game",
"TypeScript",
"webpack",
"starter"
],
"author": {
"name": "Marco Klein",
"url": "https://github.com/marcoklein"
},
"repository": {
"type": "git",
"url": "https://github.com/marcoklein/roguelike.git"
},
"template": {
"name": "phaser-project-template",
"url": "https://github.com/yandeu/phaser-project-template",
"author": "Yannick Deubel (https://github.com/yandeu)"
},
"engines": {
"node": ">=11.0.0"
},
"license": "MIT",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.1",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"ts-loader": "^7.0.4",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-obfuscator": "^0.28.2",
"workbox-webpack-plugin": "^5.1.3"
},
"dependencies": {
"phaser": "^3.23.0"
}
}