backend versions
This commit is contained in:
parent
9fb82dcfaa
commit
cf84d4ffec
3 changed files with 241 additions and 394 deletions
|
@ -12,15 +12,16 @@
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"nodemon": "^1.18.9"
|
"nodemon": "^1.19.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bcrypt": "^3.0.4",
|
"bcrypt": "^3.0.6",
|
||||||
"coffeescript": "^2.3.2",
|
"coffeescript": "^2.4.1",
|
||||||
"fastify": "^1.14.1",
|
"fastify": "^2.3.0",
|
||||||
"fastify-cookie": "^2.1.7",
|
"fastify-cookie": "^3.0.2",
|
||||||
"fastify-static": "^1.1.0",
|
"fastify-cors": "^2.1.3",
|
||||||
"fastify-ws": "^1.0.0",
|
"fastify-static": "^2.4.0",
|
||||||
|
"fastify-ws": "^1.0.1",
|
||||||
"logging": "^3.2.0",
|
"logging": "^3.2.0",
|
||||||
"redis": "^2.8.0",
|
"redis": "^2.8.0",
|
||||||
"sqlite3": "^4.0.4"
|
"sqlite3": "^4.0.4"
|
||||||
|
|
|
@ -7,6 +7,7 @@ fastify = (require 'fastify')
|
||||||
# fastify and plugin framework
|
# fastify and plugin framework
|
||||||
fastify.register (require 'fastify-cookie')
|
fastify.register (require 'fastify-cookie')
|
||||||
fastify.register (require 'fastify-ws'), library: 'uws'
|
fastify.register (require 'fastify-ws'), library: 'uws'
|
||||||
|
fastify.register (require 'fastify-cors')
|
||||||
|
|
||||||
# temporary dev frontend; to be uninstalled
|
# temporary dev frontend; to be uninstalled
|
||||||
path = (require 'path')
|
path = (require 'path')
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Reference in a new issue