-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
65
66
67
{
"name": "koa2-api-boilerplate",
"version": "2.2.0",
"description": "Koa2 boilerplate covering essentials for APIs",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "./node_modules/.bin/nodemon index.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-register --require babel-polyfill",
"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": "Adrian Obelmejias <[email protected]>",
"license": "MIT",
"apidoc": {
"title": "koa2-api-boilerplate",
"url": "localhost:5000"
},
"repository": {
"type": "git",
"url": "https://github.com/adrianObel/koa2-api-boilerplate"
},
"dependencies": {
"apidoc": "^0.16.1",
"babel-core": "^6.5.1",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-0": "^6.5.0",
"bcrypt": "^0.8.5",
"glob": "^7.0.0",
"jsonwebtoken": "^7.1.9",
"koa": "^2.0.0-alpha.6",
"koa-bodyparser": "^3.0.0",
"koa-convert": "^1.2.0",
"koa-generic-session": "^1.10.1",
"koa-logger": "^2.0.0",
"koa-mount": "^1.3.0",
"koa-passport": "^2.0.1",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0",
"mongoose": "^4.4.3",
"passport-local": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"babel-register": "^6.5.1",
"chai": "^3.5.0",
"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"
}
}