-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "winstons-world",
"version": "1.0.1",
"description": "Video game project for DMC 1000 (Foundations of Digital Media) at UC, Fall 2019",
"scripts": {
"build": "webpack --config webpack/prod.js",
"start": "webpack-dev-server --config webpack/base.js",
"play": "webpack-dev-server --config webpack/base.js --open",
"make-tilesheet": "./bin/make-tilesheet.js -d assets/tilesets"
},
"bin": {
"make-tilesheet": "./bin/make-tilesheet.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oxguy3/winstons-world.git"
},
"author": "Revolution No 9ine",
"contributors": [
"Hayden Schiff",
"Nick Klawitter",
"Charles Harte",
"Patsy Schomaeker"
],
"license": "MIT OR CC-BY-4.0",
"bugs": {
"url": "https://github.com/oxguy3/winstons-world/issues"
},
"homepage": "https://www.playwinstonsworld.com",
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"babel-loader": "^8.0.6",
"chalk": "^3.0.0",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^5.3.1",
"jimp": "^0.16.1",
"raw-loader": "^3.1.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.33.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2",
"yargs": "^14.2.0"
},
"dependencies": {
"localforage": "^1.7.3",
"phaser": "^3.21.0"
}
}