forked from snollygolly/koa-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "koa-starter",
"version": "2.1.0",
"description": "A starter kit for a slightly opinionated koa project.",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/nodemon -e js,hbs ./index.js",
"production": "node index.js",
"test": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/snollygolly/koa-starter.git"
},
"keywords": [
"koa",
"starter",
"starter-kit",
"handlebars",
"passport"
],
"author": "snollygolly (@snollygolly)",
"license": "ISC",
"bugs": {
"url": "https://github.com/snollygolly/koa-starter/issues"
},
"homepage": "https://github.com/snollygolly/koa-starter#readme",
"dependencies": {
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-hbs": "^1.0.0",
"koa-mount": "^3.0.0",
"koa-passport": "^4.0.1",
"koa-router": "^7.2.1",
"koa-session": "^5.5.0",
"koa-static": "^4.0.1",
"passport-auth0": "^1.0.0",
"passport-github": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.9.0",
"nodemon": "^1.12.1"
}
}