forked from christroutner/star4bch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.61 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "star4bch",
"version": "1.0.0",
"description": "Full stack JavaScript web app for rewarding GitHub users with BCH for staring a project.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "./node_modules/.bin/nodemon index.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha",
"lint": "eslint src/**/*.js",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs"
},
"keywords": [
"koa2-api-boilerplate",
"api",
"koa",
"koa2",
"boilerplate",
"es6",
"mongoose",
"passportjs",
"apidoc"
],
"author": "Chris Troutner <[email protected]>",
"license": "MIT",
"apidoc": {
"title": "star4bch",
"url": "localhost:5000"
},
"repository": {
"type": "git",
"url": "https://github.com/christroutner/babel-free-koa2-api-boilerplate"
},
"dependencies": {
"apidoc": "^0.16.1",
"bcrypt": "^0.8.5",
"glob": "^7.0.0",
"jsonwebtoken": "^7.1.9",
"kcors": "^2.2.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-convert": "^1.2.0",
"koa-generic-session": "^2.0.1",
"koa-logger": "^3.1.0",
"koa-mount": "^3.0.0",
"koa-passport": "^2.0.1",
"koa-router": "^7.0.1",
"koa-static": "^4.0.2",
"mongoose": "^5.0.8",
"passport-local": "^1.0.0",
"request": "^2.85.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^3.0.2",
"nodemon": "^1.8.1",
"supertest": "^2.0.0"
}
}