-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 KB
/
package.json
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": "1.0.0",
"description": "A social network",
"main": "lib/dasein.js",
"repository": {
"url": "[email protected]:rbdr/dasein.git",
"type": "git"
},
"author": "Ben Beltran <[email protected]>",
"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"
}
}