DiscordService: swap to eris and refactor the entire service while we're at it.

This commit is contained in:
41666 2019-03-22 07:01:08 -05:00
parent 27fb06a197
commit 03ad4202b8
No known key found for this signature in database
GPG key ID: BC51D07640DC10AF
14 changed files with 4075 additions and 410 deletions

View file

@ -8,17 +8,19 @@
"build": "npm-run-all build:*",
"build:ui": "NODE_ENV=production next build ui",
"build:server": "NODE_ENV=production babel --delete-dir-on-start -d dist .",
"build:move": "mkdir dist/ui; cp -R ui/.next dist/ui/.next",
"remotedebug": "remotedebug_ios_webkit_adapter --port=9000 > /dev/null &"
"remotedebug": "remotedebug_ios_webkit_adapter --port=9000 > /dev/null",
"test": "jest"
},
"dependencies": {
"@discordjs/uws": "^11.149.1",
"@primer/components": "^11.0.0",
"@primer/components": "^12.0.0",
"bufferutil": "^4.0.1",
"chalk": "^2.4.2",
"color": "^3.1.0",
"discord.js": "^11.4.2",
"dotenv": "^7.0.0",
"erlpack": "hammerandchisel/erlpack",
"eris": "^0.9.0",
"erlpack": "discordapp/erlpack",
"eventemitter3": "^3.1.0",
"fast-redux": "^0.7.1",
"fnv-plus": "^1.2.12",
"glob": "^7.1.3",
@ -51,15 +53,17 @@
"socket.io": "^2.2.0",
"styled-components": "^4.1.3",
"superagent": "^4.1.0",
"uuid": "^3.3.2"
"zlib-sync": "^0.1.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/node": "^7.2.2",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-env": "^7.4.2",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.0",
@ -68,6 +72,7 @@
"eslint-plugin-flowtype": "^3.4.2",
"flow-bin": "^0.95.1",
"flow-typed": "^2.5.1",
"jest": "^24.5.0",
"npm-run-all": "^4.1.5",
"standard": "12.0.1"
},