forked from dbalas/koalerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 919 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 919 Bytes
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
{
"name": "koalerplate",
"homepage": "https://github.com/dbalas/koalerplate.git",
"description": "A simple Koa 2 boilerplate for API's using ES6.",
"bugs": {
"url": "https://github.com/dbalas/koalerplate/issues/new"
},
"keywords": [
"koa",
"koa2",
"boilerplate",
"koalerplate",
"api",
"es6"
],
"repository": "git@github.com:dbalas/koalerplate.git",
"author": "Daniel Balastegui",
"license": "MIT",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"dev": "nodemon index",
"start": "cross-env NODE_ENVIRONMENT=production node index"
},
"dependencies": {
"@koa/cors": "2",
"cross-env": "^5.1.3",
"dotenv": "^5.0.0",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-helmet": "^3.3.0",
"koa-logger": "^3.1.0",
"koa-respond": "^1.0.1",
"koa-router": "^7.4.0"
},
"devDependencies": {
"nodemon": "^1.17.1"
}
}