2014-01-03 13:32:13 -05:00
|
|
|
{
|
|
|
|
"name": "codecombat",
|
|
|
|
"main": "index.js",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"homepage": "https://github.com/codecombat/codecombat",
|
|
|
|
"authors": [
|
|
|
|
"CodeCombat <team@codecombat.com>"
|
|
|
|
],
|
|
|
|
"description": "A multiplayer programming game for learning how to code.",
|
|
|
|
"keywords": [
|
|
|
|
"learning",
|
|
|
|
"live",
|
|
|
|
"coding",
|
|
|
|
"game",
|
|
|
|
"multiplayer"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"private": true,
|
|
|
|
"ignore": [
|
|
|
|
"**/.*",
|
|
|
|
"node_modules",
|
|
|
|
"bower_components",
|
|
|
|
"vendor",
|
|
|
|
"test"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2014-04-11 13:12:39 -04:00
|
|
|
"jquery": "~2.1.0",
|
2014-01-03 13:32:13 -05:00
|
|
|
"lodash": "~2.4.1",
|
2014-02-13 20:34:57 -05:00
|
|
|
"backbone": "1.1.0",
|
2014-01-03 13:32:13 -05:00
|
|
|
"jquery-mousewheel": "~3.1.9",
|
2015-02-15 06:24:38 -05:00
|
|
|
"i18next": "https://github.com/nwinter/i18next.git",
|
2014-01-03 13:32:13 -05:00
|
|
|
"firepad": "~0.1.2",
|
|
|
|
"marked": "~0.3.0",
|
|
|
|
"moment": "~2.5.0",
|
2016-05-24 15:00:04 -04:00
|
|
|
"aether": "~0.5.0",
|
2014-01-08 14:49:42 -05:00
|
|
|
"underscore.string": "~2.3.3",
|
2014-02-17 20:38:49 -05:00
|
|
|
"firebase": "~1.0.2",
|
2014-04-08 22:26:34 -04:00
|
|
|
"d3": "~3.4.4",
|
2014-09-26 06:06:14 -04:00
|
|
|
"jsondiffpatch": "0.1.8",
|
2014-04-11 13:20:12 -04:00
|
|
|
"nanoscroller": "~0.8.0",
|
2014-08-29 15:29:11 -04:00
|
|
|
"treema": "https://github.com/codecombat/treema.git#master",
|
2014-08-27 15:24:03 -04:00
|
|
|
"jquery.tablesorter": "~2",
|
2014-08-31 15:21:25 -04:00
|
|
|
"bootstrap": "~3.2.0",
|
2014-04-13 23:31:23 -04:00
|
|
|
"validated-backbone-mediator": "~0.1.3",
|
2014-06-13 11:12:55 -04:00
|
|
|
"jquery.browser": "~0.0.6",
|
2014-10-07 18:08:27 -04:00
|
|
|
"zatanna": "https://github.com/differentmatt/zatanna.git#master",
|
Real-time multiplayer initial commit
Simple matchmaking, synchronous multiplayer PVP, flags!
Rough matchmaking is under the game menu multiplayer tab, for ladder
games only. After creating a 2-person game there, you can exit that
modal and real-time cast to play against each other.
If you’re the first person to cast, you’ll sit at the real-time level
playback view waiting until the other player casts. When they do, you
both should start the real-time playback (and start placing flags like
crazy people).
If in a multiplayer session, the real-time simulation runs the players’
code against each other. Your multiplayer opponent’s name should be up
near the level name.
Multiplayer sessions are stored completely in Firebase for now, and
removed if both players leave the game. There’s plenty of bugs,
synchronization issues, and minimal polish to add before we push it to
master.
2014-08-29 02:34:07 -04:00
|
|
|
"modernizr": "~2.8.3",
|
2014-10-26 18:34:03 -04:00
|
|
|
"backfire": "~0.3.0",
|
2015-01-29 19:11:13 -05:00
|
|
|
"fastclick": "~1.0.3",
|
2015-06-19 17:55:14 -04:00
|
|
|
"three.js": "~0.71.0",
|
2016-03-04 16:04:52 -05:00
|
|
|
"lscache": "~1.0.5",
|
2016-04-15 17:00:36 -04:00
|
|
|
"esper.js": "http://files.codecombat.com/esper.tar.gz",
|
|
|
|
"algoliasearch": "^3.13.1",
|
2016-04-21 14:21:11 -04:00
|
|
|
"algolia-autocomplete.js": "^1.17.0",
|
|
|
|
"algolia-autocomplete-no-conflict": "1.0.0"
|
2014-01-03 13:32:13 -05:00
|
|
|
},
|
|
|
|
"overrides": {
|
2016-04-15 20:48:31 -04:00
|
|
|
"algolia-autocomplete.js": {
|
|
|
|
"main": "dist/autocomplete.jquery.js"
|
|
|
|
},
|
2016-04-21 14:21:11 -04:00
|
|
|
"algolia-autocomplete-no-conflict": {
|
|
|
|
"main": "no-conflict.js"
|
|
|
|
},
|
2014-01-03 13:32:13 -05:00
|
|
|
"backbone": {
|
|
|
|
"main": "backbone.js"
|
|
|
|
},
|
Real-time multiplayer initial commit
Simple matchmaking, synchronous multiplayer PVP, flags!
Rough matchmaking is under the game menu multiplayer tab, for ladder
games only. After creating a 2-person game there, you can exit that
modal and real-time cast to play against each other.
If you’re the first person to cast, you’ll sit at the real-time level
playback view waiting until the other player casts. When they do, you
both should start the real-time playback (and start placing flags like
crazy people).
If in a multiplayer session, the real-time simulation runs the players’
code against each other. Your multiplayer opponent’s name should be up
near the level name.
Multiplayer sessions are stored completely in Firebase for now, and
removed if both players leave the game. There’s plenty of bugs,
synchronization issues, and minimal polish to add before we push it to
master.
2014-08-29 02:34:07 -04:00
|
|
|
"backfire": {
|
|
|
|
"main": "backbone-firebase.min.js"
|
|
|
|
},
|
2014-01-03 13:32:13 -05:00
|
|
|
"lodash": {
|
|
|
|
"main": "dist/lodash.js"
|
|
|
|
},
|
|
|
|
"marked": {
|
|
|
|
"main": "lib/marked.js"
|
|
|
|
},
|
|
|
|
"underscore.string": {
|
|
|
|
"main": "lib/underscore.string.js"
|
2014-04-09 19:09:35 -04:00
|
|
|
},
|
|
|
|
"jsondiffpatch": {
|
2014-04-13 23:31:23 -04:00
|
|
|
"main": [
|
|
|
|
"build/bundle-full.js",
|
|
|
|
"build/formatters.js",
|
|
|
|
"src/formatters/html.css"
|
|
|
|
]
|
2014-04-11 13:33:22 -04:00
|
|
|
},
|
2014-11-29 20:51:32 -05:00
|
|
|
"treema": {
|
|
|
|
"main": [
|
|
|
|
"treema.js",
|
|
|
|
"treema.css",
|
|
|
|
"treema-utils.js"
|
|
|
|
]
|
|
|
|
},
|
2014-04-05 20:05:03 -04:00
|
|
|
"jquery.tablesorter": {
|
|
|
|
"main": [
|
|
|
|
"js/jquery.tablesorter.js",
|
|
|
|
"js/jquery.tablesorter.widgets.js",
|
|
|
|
"css/theme.bootstrap.css"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"bootstrap": {
|
|
|
|
"main": [
|
|
|
|
"./dist/js/bootstrap.js",
|
|
|
|
"./dist/fonts/glyphicons-halflings-regular.eot",
|
|
|
|
"./dist/fonts/glyphicons-halflings-regular.svg",
|
|
|
|
"./dist/fonts/glyphicons-halflings-regular.ttf",
|
|
|
|
"./dist/fonts/glyphicons-halflings-regular.woff"
|
|
|
|
]
|
2014-07-09 16:41:42 -04:00
|
|
|
},
|
|
|
|
"modernizr": {
|
|
|
|
"main": "modernizr.js"
|
2014-12-01 16:16:00 -05:00
|
|
|
},
|
|
|
|
"aether": {
|
|
|
|
"main": [
|
|
|
|
"build/aether.js",
|
|
|
|
"build/clojure.js",
|
|
|
|
"build/coffeescript.js",
|
|
|
|
"build/io.js",
|
|
|
|
"build/javascript.js",
|
|
|
|
"build/lua.js",
|
2015-12-23 13:38:00 -05:00
|
|
|
"build/python.js",
|
|
|
|
"build/java.js"
|
2014-12-01 16:16:00 -05:00
|
|
|
]
|
2014-01-03 13:32:13 -05:00
|
|
|
}
|
2014-10-03 18:24:40 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2015-12-01 19:47:11 -05:00
|
|
|
"modernizr-mixin": "~3.0.0",
|
2016-03-30 16:57:19 -04:00
|
|
|
"openSansCondensed": "https://google-fonts.azurewebsites.net/googleFonts/openSansCondensed?family=Open+Sans+Condensed:700&subset=latin,latin-ext,cyrillic-ext,greek-ext,greek,vietnamese,cyrillic",
|
|
|
|
"openSans": "https://google-fonts.azurewebsites.net/googleFonts/openSans?family=Open+Sans:600,700&subset=latin,latin-ext,cyrillic-ext,greek-ext,greek,vietnamese,cyrillic"
|
2014-01-03 13:32:13 -05:00
|
|
|
}
|
|
|
|
}
|