combine.fm/package.json

82 lines
2.5 KiB
JSON
Raw Permalink Normal View History

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": {
2020-01-18 10:19:20 +00:00
"build": "webpack --mode=production --config webpack.config.cjs && webpack --config webpack.config.server.cjs",
"start": "node app.js",
"worker": "node worker.js",
"test": "mocha-esm test/**/*.js test/lookup.js --timeout=15000",
2018-04-28 17:55:02 +01:00
"watch": "concurrently -k \"npm:watch-js\" \"npm:watch-server\"",
2020-01-18 10:19:20 +00:00
"watch-js": "concurrently -k -n webpack-frontend,webpack-server \"webpack -w -d --config webpack.config.cjs\" \"webpack -w --config webpack.config.server.cjs\"",
"watch-server": "nodemon -e js,vue -i node_modules -i chrome/ app.js",
"watch-worker": "nodemon -e js,vue -i node_modules -i chrome/ worker.js",
"initdb": "node test/initdb.js"
2014-11-30 12:21:03 +00:00
},
2020-01-18 10:19:20 +00:00
"type": "module",
2014-11-30 12:21:03 +00:00
"engines": {
2020-01-18 10:19:20 +00:00
"node": ">=13.0.0"
2014-11-30 12:21:03 +00:00
},
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.10.5",
"@sentry/node": "^5.29.1",
2018-04-13 01:42:16 +01:00
"apple-music-jwt": "^0.2.0",
"babel-loader": "^8.1.0",
"bluebird": "^3.7.2",
"bulma": "^0.9.1",
2015-07-23 08:51:00 +01:00
"co": "~4.6.0",
"css-loader": "^5.0.1",
2019-03-11 20:59:04 +00:00
"debug": "^4.1.1",
"ejs": "^3.1.3",
"file-loader": "^6.2.0",
"iso8601-duration": "^1.1.1",
2018-04-13 21:44:31 +01:00
"kcors": "^2.2.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-compress": "~5.0.1",
"koa-favicon": "~2.1.0",
"koa-logger": "~3.2.1",
2018-04-13 21:44:31 +01:00
"koa-route": "~3.2.0",
2019-03-11 20:59:04 +00:00
"koa-static": "^5.0.0",
2020-04-28 19:53:41 +01:00
"koa-views": "^6.3.0",
2017-10-23 17:58:23 +01:00
"kue": "^0.11.6",
2020-08-21 11:15:06 +01:00
"mini-css-extract-plugin": "^0.10.0",
2020-01-18 10:19:20 +00:00
"mocha-esm": "^1.1.1",
"newrelic": "^7.0.2",
"node-sass": "^4.14.1",
2017-07-20 14:31:07 +01:00
"nodebrainz": "^2.1.1",
"pg": "^8.5.1",
2017-10-23 23:20:22 +01:00
"playmusic": "^2.3.0",
"sass-loader": "^10.1.0",
"sequelize": "^6.3.5",
2020-01-18 10:19:20 +00:00
"sequelize-cli-esm": "^5.0.6",
2018-12-06 17:02:10 +00:00
"spotify-web-api-node": "^4.0.0",
"superagent": "^6.1.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.5",
"vue-router": "^3.3.4",
2020-01-14 12:36:42 +00:00
"vue-server-renderer": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.5.1",
2018-04-13 18:36:58 +01:00
"vuex-router-sync": "^5.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-stats-plugin": "^0.3.2"
2014-12-01 12:41:26 +00:00
},
"devDependencies": {
"concurrently": "^5.1.0",
"eslint": "^7.15.0",
2020-04-28 19:53:41 +01:00
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
2015-10-26 17:20:32 +00:00
"istanbul": "^0.4.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
2018-04-13 01:42:16 +01:00
"should": "^13.2.1"
2014-11-30 12:21:03 +00:00
}
}