-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.18 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
{
"name": "landslide",
"version": "1.0.0",
"description": "* LANDSLIDE * Background and Overview (Game based off http://www.avalanchegame.org/) * Create a simple yet addicting game, with randomly / procedurally generated content and basic platforming physics * Player can run left and right, as well as jump * Squares of different sizes fall randomly from sky and stack up for player to jump off * Water slowly rises from bottom that kills player",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.0",
"mongoose": "^5.5.9",
"validator": "^10.11.0",
"webpack": "^4.31.0"
},
"devDependencies": {
"nodemon": "^1.19.0",
"webpack-cli": "^3.3.2"
},
"scripts": {
"dev": "webpack --watch --mode=development",
"start": "node server.js",
"server": "nodemon server.js",
"heroku-postbuild": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natedonato/landslide.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/natedonato/landslide/issues"
},
"homepage": "https://github.com/natedonato/landslide#readme"
}