Migrating to workers, renaming service

This commit is contained in:
Jonathan Cremin 2017-10-23 17:58:23 +01:00
parent 850584ff36
commit a6cd5f4266
29 changed files with 5542 additions and 611 deletions

View file

@ -1,31 +1,32 @@
{
"name": "match.audio",
"name": "combine.fm",
"version": "0.0.0",
"repository": "https://github.com/kudos/match.audio",
"license": "MIT",
"scripts": {
"build": "webpack -p --config webpack.config.js && webpack -p --config webpack.config.server.js",
"start": "node -r babel-register app.js",
"worker": "nodemon -x \"node -r babel-register\" -e js,vue -i node_modules -i chrome/ worker.js",
"test": "mocha -r co-mocha --compilers js:babel-register test/**/*.js --timeout=15000",
"watch": "parallelshell \"npm run watch-js\" \"npm run watch-server\"",
"watch-js": "parallelshell \"webpack -w -d --config webpack.config.js\" \"webpack -w -d --config webpack.config.server.js\"",
"watch-server": "nodemon -x \"node -r babel-register\" -e js,vue -i node_modules -i chrome/ app.js",
"heroku-postbuild": "npm run build"
"heroku-postbuild": "npm run build",
"initdb": "node -r babel-register test/initdb.js"
},
"engines": {
"node": "^7.10.0",
"npm": "^4.2.0"
"node": "^8.6.0"
},
"dependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.3.13",
"babel-core": "^6.3.13",
"babel-loader": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.1.18",
"babel-plugin-transform-es2015-block-scoping": "^6.1.18",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-classes": "^6.2.2",
"babel-plugin-transform-es2015-computed-properties": "^6.1.18",
"babel-plugin-transform-es2015-constants": "^6.1.4",
@ -33,7 +34,7 @@
"babel-plugin-transform-es2015-for-of": "^6.1.18",
"babel-plugin-transform-es2015-function-name": "^6.1.18",
"babel-plugin-transform-es2015-literals": "^6.1.18",
"babel-plugin-transform-es2015-modules-commonjs": "^6.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es2015-object-super": "^6.1.18",
"babel-plugin-transform-es2015-parameters": "^6.1.18",
"babel-plugin-transform-es2015-shorthand-properties": "^6.1.18",
@ -43,17 +44,17 @@
"babel-plugin-transform-es2015-typeof-symbol": "^6.1.18",
"babel-plugin-transform-es2015-unicode-regex": "^6.1.18",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-preset-es2015": "^6.0.0",
"babel-preset-latest-minimal": "^1.1.2",
"babel-register": "^6.16.3",
"babel-register": "^6.26.0",
"bluebird": "^3.4.1",
"bulma": "^0.4.1",
"co": "~4.6.0",
"css-loader": "^0.28.1",
"debug": "^2.6.6",
"ejs": "^2.5.2",
"ejs": "^2.5.7",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"json-loader": "^0.5.4",
@ -68,12 +69,13 @@
"koa-static": "^2.0.0",
"koa-views": "^4.0.1",
"koa-websocket": "^2.1.0",
"kue": "^0.11.6",
"moment": "^2.14.1",
"node-uuid": "~1.4.2",
"nodebrainz": "^2.1.1",
"pg": "^6.1.0",
"playmusic": "https://github.com/jamon/playmusic.git#37e98f39c33fc5359a8a30b8c8e422161a4be9a8",
"raven": "^2.0.2",
"raven": "^2.1.2",
"sequelize": "^3.24.3",
"spotify-web-api-node": "^2.4.0",
"style-loader": "^0.17.0",
@ -91,15 +93,15 @@
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.15.0",
"babel-runtime": "^6.11.6",
"babel-runtime": "^6.26.0",
"co-mocha": "^1.2.0",
"eslint": "^3.8.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.0.1",
"eslint": "^4.7.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"istanbul": "^0.4.0",
"mocha": "^3.0.2",
"nodemon": "^1.10.2",
"parallelshell": "~2.0.0",
"should": "^11.1.0"
"mocha": "^3.5.3",
"nodemon": "^1.12.1",
"parallelshell": "^3.0.1",
"should": "^13.0.1"
}
}