2014-11-30 12:21:03 +00:00
|
|
|
{
|
2017-10-23 17:58:23 +01:00
|
|
|
"name": "combine.fm",
|
2014-11-30 12:21:03 +00:00
|
|
|
"version": "0.0.0",
|
2015-08-20 23:22:57 +01:00
|
|
|
"repository": "https://github.com/kudos/match.audio",
|
|
|
|
"license": "MIT",
|
2014-11-30 12:21:03 +00:00
|
|
|
"scripts": {
|
2016-10-03 13:31:29 +01:00
|
|
|
"build": "webpack -p --config webpack.config.js && webpack -p --config webpack.config.server.js",
|
|
|
|
"start": "node -r babel-register app.js",
|
2017-10-23 17:58:23 +01:00
|
|
|
"worker": "nodemon -x \"node -r babel-register\" -e js,vue -i node_modules -i chrome/ worker.js",
|
2016-10-03 13:31:29 +01:00
|
|
|
"test": "mocha -r co-mocha --compilers js:babel-register test/**/*.js --timeout=15000",
|
2015-06-14 19:22:33 +01:00
|
|
|
"watch": "parallelshell \"npm run watch-js\" \"npm run watch-server\"",
|
2016-10-03 13:31:29 +01:00
|
|
|
"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",
|
2017-10-23 17:58:23 +01:00
|
|
|
"heroku-postbuild": "npm run build",
|
|
|
|
"initdb": "node -r babel-register test/initdb.js"
|
2014-11-30 12:21:03 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2017-10-23 17:58:23 +01:00
|
|
|
"node": "^8.6.0"
|
2014-11-30 12:21:03 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-04-08 16:31:46 +01:00
|
|
|
"amazon-product-api": "^0.4.4",
|
2017-10-23 19:21:19 +01:00
|
|
|
"apple-music-jwt": "^0.1.2",
|
2016-01-09 12:24:44 +00:00
|
|
|
"babel": "^6.1.18",
|
2017-10-23 17:58:23 +01:00
|
|
|
"babel-cli": "^6.26.0",
|
|
|
|
"babel-core": "^6.26.0",
|
|
|
|
"babel-loader": "^7.1.2",
|
2016-01-09 12:24:44 +00:00
|
|
|
"babel-plugin-syntax-jsx": "^6.3.13",
|
2016-10-03 13:31:29 +01:00
|
|
|
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
|
2016-01-09 12:24:44 +00:00
|
|
|
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
|
2015-11-22 12:37:09 +00:00
|
|
|
"babel-plugin-transform-es2015-block-scoped-functions": "^6.1.18",
|
2017-10-23 17:58:23 +01:00
|
|
|
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
|
2015-11-22 12:37:09 +00:00
|
|
|
"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",
|
|
|
|
"babel-plugin-transform-es2015-destructuring": "^6.1.18",
|
|
|
|
"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",
|
2017-10-23 17:58:23 +01:00
|
|
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
|
2015-11-22 12:37:09 +00:00
|
|
|
"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",
|
|
|
|
"babel-plugin-transform-es2015-spread": "^6.1.18",
|
|
|
|
"babel-plugin-transform-es2015-sticky-regex": "^6.1.18",
|
|
|
|
"babel-plugin-transform-es2015-template-literals": "^6.1.18",
|
|
|
|
"babel-plugin-transform-es2015-typeof-symbol": "^6.1.18",
|
|
|
|
"babel-plugin-transform-es2015-unicode-regex": "^6.1.18",
|
2016-10-03 13:31:29 +01:00
|
|
|
"babel-plugin-transform-object-assign": "^6.8.0",
|
2017-10-23 17:58:23 +01:00
|
|
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
2016-10-03 13:31:29 +01:00
|
|
|
"babel-plugin-transform-remove-strict-mode": "0.0.2",
|
|
|
|
"babel-preset-es2015": "^6.0.0",
|
|
|
|
"babel-preset-latest-minimal": "^1.1.2",
|
2017-10-23 17:58:23 +01:00
|
|
|
"babel-register": "^6.26.0",
|
2017-10-23 22:47:14 +01:00
|
|
|
"bluebird": "^3.5.1",
|
2017-10-23 19:21:19 +01:00
|
|
|
"bulma": "^0.6.0",
|
2015-07-23 08:51:00 +01:00
|
|
|
"co": "~4.6.0",
|
2017-05-06 21:15:47 +01:00
|
|
|
"css-loader": "^0.28.1",
|
|
|
|
"debug": "^2.6.6",
|
2017-10-23 17:58:23 +01:00
|
|
|
"ejs": "^2.5.7",
|
2017-05-07 00:02:20 +01:00
|
|
|
"extract-text-webpack-plugin": "^2.1.0",
|
2017-05-06 21:15:47 +01:00
|
|
|
"file-loader": "^0.11.1",
|
2017-11-12 00:33:56 +00:00
|
|
|
"iso8601-duration": "^1.1.1",
|
2016-10-03 13:31:29 +01:00
|
|
|
"json-loader": "^0.5.4",
|
2015-11-29 14:10:53 +00:00
|
|
|
"kcors": "^1.0.1",
|
2016-10-03 13:31:29 +01:00
|
|
|
"koa": "^1.2.1",
|
|
|
|
"koa-bodyparser": "^2.2.0",
|
2015-07-23 08:51:00 +01:00
|
|
|
"koa-compress": "~1.0.8",
|
|
|
|
"koa-favicon": "~1.2.0",
|
|
|
|
"koa-file-server": "~2.3.1",
|
2015-07-25 19:55:13 +01:00
|
|
|
"koa-logger": "~1.3.0",
|
2015-11-22 12:37:09 +00:00
|
|
|
"koa-route": "~2.4.2",
|
2016-10-03 13:31:29 +01:00
|
|
|
"koa-static": "^2.0.0",
|
|
|
|
"koa-views": "^4.0.1",
|
|
|
|
"koa-websocket": "^2.1.0",
|
2017-10-23 17:58:23 +01:00
|
|
|
"kue": "^0.11.6",
|
2016-10-03 13:31:29 +01:00
|
|
|
"moment": "^2.14.1",
|
2015-07-23 08:51:00 +01:00
|
|
|
"node-uuid": "~1.4.2",
|
2017-07-20 14:31:07 +01:00
|
|
|
"nodebrainz": "^2.1.1",
|
2016-10-03 13:31:29 +01:00
|
|
|
"pg": "^6.1.0",
|
2017-10-23 23:20:22 +01:00
|
|
|
"playmusic": "^2.3.0",
|
2017-10-23 17:58:23 +01:00
|
|
|
"raven": "^2.1.2",
|
2016-10-03 13:31:29 +01:00
|
|
|
"sequelize": "^3.24.3",
|
2017-07-20 14:31:07 +01:00
|
|
|
"spotify-web-api-node": "^2.4.0",
|
2017-05-06 21:15:47 +01:00
|
|
|
"style-loader": "^0.17.0",
|
2016-10-03 13:31:29 +01:00
|
|
|
"superagent": "^2.1.0",
|
|
|
|
"superagent-bluebird-promise": "^3.0.2",
|
2017-05-13 13:51:24 +01:00
|
|
|
"vue": "^2.3.3",
|
|
|
|
"vue-loader": "^12.0.4",
|
2017-05-06 21:15:47 +01:00
|
|
|
"vue-router": "^2.5.3",
|
2017-05-13 13:51:24 +01:00
|
|
|
"vue-server-renderer": "^2.3.3",
|
|
|
|
"vue-template-compiler": "^2.3.3",
|
2017-05-06 21:15:47 +01:00
|
|
|
"vuex": "^2.3.1",
|
|
|
|
"vuex-router-sync": "^4.1.2",
|
2017-05-07 00:02:20 +01:00
|
|
|
"webpack": "^2.5.0",
|
|
|
|
"webpack-stats-plugin": "^0.1.5"
|
2014-12-01 12:41:26 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-10-03 13:31:29 +01:00
|
|
|
"babel-plugin-transform-runtime": "^6.15.0",
|
2017-10-23 17:58:23 +01:00
|
|
|
"babel-runtime": "^6.26.0",
|
2017-10-23 22:47:14 +01:00
|
|
|
"co-mocha": "^1.2.1",
|
2017-10-23 17:58:23 +01:00
|
|
|
"eslint": "^4.7.0",
|
|
|
|
"eslint-config-airbnb": "^15.1.0",
|
|
|
|
"eslint-plugin-import": "^2.7.0",
|
2015-10-26 17:20:32 +00:00
|
|
|
"istanbul": "^0.4.0",
|
2017-10-23 17:58:23 +01:00
|
|
|
"mocha": "^3.5.3",
|
|
|
|
"nodemon": "^1.12.1",
|
2017-10-23 22:47:14 +01:00
|
|
|
"parallelshell": "^3.0.2",
|
2017-10-23 17:58:23 +01:00
|
|
|
"should": "^13.0.1"
|
2014-11-30 12:21:03 +00:00
|
|
|
}
|
|
|
|
}
|