diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..eacffae --- /dev/null +++ b/package.json @@ -0,0 +1,51 @@ +{ + "name": "dasein", + "version": "1.0.0", + "description": "A social network", + "main": "lib/dasein.js", + "repository": { + "url": "git@github.com:rbdr/dasein.git", + "type": "git" + }, + "author": "Ben Beltran <ben@nsovocal.com>", + "license": "MIT", + "bin": { + "dasein": "./bin/dasein.js" + }, + "scripts": { + "build": "webpack --config ./config/webpack.js", + "document": "jsdoc -c ./config/jsdoc.json lib config", + "lint": "eslint .", + "start": "node ./bin/dasein.js", + "test": "echo \"Error: no test specified... sorry D:\"" + }, + "devDependencies": { + "babel-core": "^6.22.1", + "babel-loader": "^6.2.10", + "babel-preset-latest": "^6.22.0", + "docdash": "^0.4.0", + "eslint": "^3.12.1", + "eslint-config-hapi": "^10.0.0", + "eslint-plugin-hapi": "^4.0.0", + "jsdoc": "^3.4.3", + "webpack": "^1.14.0" + }, + "dependencies": { + "axios": "^0.15.3", + "getenv": "^0.7.0", + "joi": "^10.2.0", + "jsonwebtoken": "^7.2.1", + "koa": "^1.2.4", + "koa-bodyparser": "^2.3.0", + "koa-jwt": "^1.3.1", + "koa-route": "^2.4.2", + "koa-send": "^3.3.0", + "koa-static": "^2.0.0", + "oauth": "^0.9.15", + "pify": "^2.3.0", + "redis": "^2.6.5", + "uuid": "^3.0.1", + "vue": "^2.1.10", + "vue-router": "^2.2.0" + } +} |