Add more async
This commit is contained in:
parent
7be2b7b97a
commit
8ea8b4d279
14 changed files with 108 additions and 300 deletions
14
package.json
14
package.json
|
@ -7,7 +7,7 @@
|
|||
"build": "webpack --mode=production --config webpack.config.js && webpack --config webpack.config.server.js",
|
||||
"start": "node -r @babel/register app.js",
|
||||
"worker": "node -r @babel/register worker.js",
|
||||
"test": "mocha -r co-mocha -r '@babel/register' test/**/*.js --timeout=15000",
|
||||
"test": "mocha -r '@babel/register' test/**/*.js test/lookup.js --timeout=15000",
|
||||
"watch": "concurrently -k \"npm:watch-js\" \"npm:watch-server\"",
|
||||
"watch-js": "concurrently -k -n webpack-frontend,webpack-server \"webpack -w -d --config webpack.config.js\" \"webpack -w --config webpack.config.server.js\"",
|
||||
"watch-server": "nodemon -x \"node -r @babel/register\" -e js,vue -i node_modules -i chrome/ app.js",
|
||||
|
@ -21,7 +21,6 @@
|
|||
"dependencies": {
|
||||
"@babel/cli": "^7.0.0-beta.46",
|
||||
"@babel/core": "^7.0.0-beta.46",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.46",
|
||||
"@babel/polyfill": "^7.0.0-beta.46",
|
||||
"@babel/preset-env": "^7.0.0-beta.46",
|
||||
"@babel/register": "^7.0.0-beta.46",
|
||||
|
@ -34,7 +33,6 @@
|
|||
"css-loader": "^0.28.11",
|
||||
"debug": "^3.1.0",
|
||||
"ejs": "^2.5.9",
|
||||
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
||||
"file-loader": "^1.1.11",
|
||||
"iso8601-duration": "^1.1.1",
|
||||
"kcors": "^2.2.1",
|
||||
|
@ -42,27 +40,20 @@
|
|||
"koa-bodyparser": "^4.2.0",
|
||||
"koa-compress": "~3.0.0",
|
||||
"koa-favicon": "~2.0.1",
|
||||
"koa-file-server": "~2.3.1",
|
||||
"koa-logger": "~3.2.0",
|
||||
"koa-route": "~3.2.0",
|
||||
"koa-static": "^4.0.2",
|
||||
"koa-views": "^6.1.4",
|
||||
"koa-websocket": "^4.1.0",
|
||||
"kue": "^0.11.6",
|
||||
"mini-css-extract-plugin": "^0.4.0",
|
||||
"moment": "^2.22.1",
|
||||
"node-sass": "^4.9.0",
|
||||
"node-uuid": "~1.4.2",
|
||||
"nodebrainz": "^2.1.1",
|
||||
"pg": "^7.4.1",
|
||||
"playmusic": "^2.3.0",
|
||||
"raven": "^2.6.0",
|
||||
"sass-loader": "^7.0.1",
|
||||
"sequelize": "^4.37.6",
|
||||
"spotify-web-api-node": "^3.1.0",
|
||||
"style-loader": "^0.21.0",
|
||||
"superagent": "^3.8.2",
|
||||
"uglifyjs-webpack-plugin": "^1.2.5",
|
||||
"vue": "^2.5.16",
|
||||
"vue-loader": "^15.0.4",
|
||||
"vue-router": "^3.0.1",
|
||||
|
@ -75,10 +66,9 @@
|
|||
"webpack-stats-plugin": "^0.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"co-mocha": "^1.2.2",
|
||||
"concurrently": "^3.5.1",
|
||||
"eslint": "^4.19.1",
|
||||
"eslint-config-airbnb": "^16.1.0",
|
||||
"eslint-config-airbnb-base": "^12.1.0",
|
||||
"eslint-plugin-import": "^2.11.0",
|
||||
"istanbul": "^0.4.0",
|
||||
"mocha": "^5.1.1",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue