-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
{
"name": "alexa-webapi-phaser-project-template",
"version": "3.24.1",
"description": "Alexa Web API Phaser 3 starter template with TypeScript and webpack.",
"homepage": "https://github.com/goldzulu/helloweb#readme",
"main": "index.js",
"scripts": {
"deploy:skill": "ask deploy",
"deploy:skill:infra": "ask deploy --target skill-infrastructure",
"deploy:skill:meta": "ask deploy --target skill-metadata",
"start": "webpack-dev-server --config webpack/webpack.dev.js",
"build": "webpack --config webpack/webpack.prod.js",
"bundle": "npm run build",
"serve": "serve dist",
"deploy:s3": "(npm run build && aws s3 cp ./dist s3://ask-helloweb-default-skillstack-16-s3webappbucket-1q2f8zuglbnog/dist/v1 --recursive --acl public-read)",
"serve:s3": "open https://ask-helloweb-default-skillstack-16-s3webappbucket-1q2f8zuglbnog.s3.amazonaws.com/dist/v1/index.html"
},
"keywords": [
"Phaser",
"Phaser 3",
"Phaser3",
"html5 game",
"TypeScript",
"webpack",
"starter",
"Alexa",
"WebAPI"
],
"author": {
"name": "GoldZulu",
"url": "https://github.com/goldzulu"
},
"repository": {
"type": "git",
"url": "https://github.com/goldzulu/helloweb.git"
},
"template": {
"name": "alexa-webapi-phaser-project-template",
"url": "https://github.com/goldzulu/helloweb",
"author": "GoldZulu (https://github.com/goldzulu)"
},
"engines": {
"node": ">=8.0.0"
},
"license": "MIT",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"html-webpack-plugin": "^3.2.0",
"serve": "^11.3.2",
"ts-loader": "^5.4.5",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-obfuscator": "^0.27.4",
"workbox-webpack-plugin": "^5.1.3"
},
"dependencies": {
"phaser": "^3.52.0"
}
}