diff --git a/package.json b/package.json index 69836065..05ff1139 100644 --- a/package.json +++ b/package.json @@ -67,7 +67,6 @@ "moment": "^2.15.2", "nanoajax": "^0.4.0", "node-sqlparser": "^1.0.2", - "node-uuid": "^1.4.7", "on": "^1.3.0", "openurl": "^1.1.0", "pm2": "^2.0.18", @@ -75,6 +74,7 @@ "prompt": "^1.0.0", "qs": "^6.0.1", "request": "^2.69.0", + "uuid": "^3.0.0", "watch": "^1.0.1", "which": "^1.2.11", "xss": "^0.2.10" diff --git a/src/server/app.js b/src/server/app.js index 0c658ab1..746bba8e 100755 --- a/src/server/app.js +++ b/src/server/app.js @@ -9,7 +9,7 @@ import path from 'path' import busboy from 'connect-busboy' import clc from 'cli-color' import openurl from 'openurl' -import uuid from 'node-uuid' +import uuid from 'uuid' import { config, @@ -201,4 +201,4 @@ var controllers = require('./controllers') app.use(controllers.default) // This static path is mandatory for relative path to statics in templates -app.use('/abe', express.static(publish)) \ No newline at end of file +app.use('/abe', express.static(publish))