-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.36 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
{
"name": "disformer",
"version": "0.5.0",
"description": "The general idea is a dynamically generated platformer with \"sets\" of 10 levels that ramp up in difficulty (with 10 distinct difficulty classes based on user win rates, as in a 90% or higher user win rate is easy, between 80% and 90% is slightly harder, and etc.). It will be a very basic platformer with collisions between a square that can jump and the generated tiles.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "node index.js",
"bot": "node bot.js",
"serverbot": "concurrently --kill-others \"npm run server\" \"npm run bot\"",
"serverbot-debug": "\"npm run serverbot\" --inspect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freestraws/disformer.git"
},
"author": "freestraws",
"license": "ISC",
"bugs": {
"url": "https://github.com/freestraws/disformer/issues"
},
"homepage": "https://github.com/freestraws/disformer#readme",
"dependencies": {
"body-parser": "^1.18.3",
"concurrently": "^4.0.0",
"connect-ensure-login": "^0.1.1",
"discord.js": "^11.4.2",
"express": "^4.16.4",
"express-handlebars": "^3.0.2",
"express-session": "^1.16.1",
"mongodb": "^3.2.3",
"passport": "^0.4.0",
"passport-discord": "^0.1.3",
"passport-local": "^1.0.0",
"phaser": "^3.16.2"
}
}