aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: bfefe7766f39a632dd95a4eab0a7ff8916f36bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "name": "dasein",
  "version": "0.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"
  }
}