-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "playground-koa-mongodb",
"version": "1.0.0",
"description": "A playground for Koa with MongoDB.",
"author": "Roberto Achar <robertoachar@gmail.com>",
"homepage": "https://github.com/robertoachar/playground-koa-mongodb#readme",
"keywords": [
"node"
],
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint src/**/*.js",
"start": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/robertoachar/playground-koa-mongodb.git"
},
"bugs": {
"url": "https://github.com/robertoachar/playground-koa-mongodb/issues"
},
"dependencies": {
"dotenv": "7.0.0",
"esm": "3.2.22",
"koa": "2.7.0",
"koa-bodyparser": "4.2.1",
"koa-helmet": "4.1.0",
"koa-router": "7.4.0",
"mongoose": "5.5.3",
"winston": "3.2.1"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-prettier": "3.0.1",
"nodemon": "1.18.11",
"prettier": "1.17.0"
},
"license": "MIT"
}