darkwire.io/server/package.json
Alan Friedman 8cd079ea8e
CORS fixes (#72)
* Add SITE_URL env var

* Debug git branch

* Set site URL to "false"

* Bug fix

* Fix CORS allowed methods

* Upgrade kcors

* Fix for API HOST in review apps

* Review app fixes

* Add bin/bash

* Refactor site URL code

* Cleanup API host
2019-05-19 16:42:30 -04:00

51 lines
1.2 KiB
JSON

{
"name": "darkwire-server",
"version": "2.0.0-beta.8",
"main": "index.js",
"license": "MIT",
"contributors": [
{
"name": "Daniel Seripap"
},
{
"name": "Alan Friedman"
}
],
"dependencies": {
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/runtime": "^7.4.4",
"bluebird": "^3.5.1",
"dotenv": "^8.0.0",
"kcors": "^2.2.2",
"koa": "^2.3.0",
"koa-body": "^2.3.0",
"koa-router": "^7.2.1",
"koa-send": "^5.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.4",
"mailgun-js": "^0.22.0",
"moment": "^2.18.1",
"redis": "^2.8.0",
"socket.io": "^2.0.3",
"socket.io-redis": "^5.2.0",
"uuid": "^3.3.2"
},
"scripts": {
"build": "./build.sh",
"dev": "nodemon src/index.js --exec babel-node",
"test": "jest",
"test:watch": "jest --watch",
"start": "node dist/src/index.js"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"eslint": "^4.6.1",
"jest": "^21.0.2",
"nodemon": "^1.19.0"
}
}