-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 KB
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
67
68
{
"name": "chemsims",
"version": "0.0.2",
"description": "Glassware simulation for general chem students.",
"homepage": "https://github.com/annapoliswu/chemSims/blob/master/egdd.md",
"main": "index.js",
"game": {
"url": "chemSims",
"shortName": "GlassSim",
"name": "Glassware Sim"
},
"author": {
"name": "Zihan (Anna) Wu",
"url": "https://github.com/annapoliswu"
},
"repository": {
"type": "git",
"url": "https://github.com/annapoliswu/chemSims"
},
"scripts": {
"start": "webpack-dev-server --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js",
"deploy-dev": "webpack --config config/webpack.deploy.js --env.endpoint=dev && gh-pages -d dist",
"deploy-alpha": "webpack --config config/webpack.deploy.js --env.endpoint=alpha && gh-pages -d dist",
"deploy-beta": "webpack --config config/webpack.deploy.js --env.endpoint=beta && gh-pages -d dist",
"deploy-final": "webpack --config config/webpack.deploy.js --env.endpoint=final && gh-pages -d dist",
"deploy-all": "gh-pages -d dist"
},
"keywords": [
"Phaser",
"Phaser 3",
"Phaser3",
"html5 game",
"educational games",
"educational game design",
"TypeScript",
"webpack",
"Github Pages",
"starter"
],
"template": {
"name": "educational-phaser-game-template",
"url": "https://github.com/acbart/educational-phaser-game-template",
"author": "Austin Cory Bart (https://github.com/acbart)"
},
"engines": {
"node": ">=8.0.0"
},
"license": "MIT",
"devDependencies": {
"argv": "0.0.2",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.1.1",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"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": "^4.3.1"
},
"dependencies": {
"phaser": "^3.23.0"
}
}