-
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) · 911 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 911 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": "notes-api",
"version": "0.0.1",
"description": "Notes API",
"main": "index.js",
"dependencies": {
"dotenv": "^4.0.0",
"koa": "^2.4.1",
"koa-better-router": "^2.1.1",
"koa-bodyparser": "^4.2.0",
"koa-json": "^2.0.2",
"lodash": "^4.17.4",
"mongoose": "^4.13.1",
"mongoose-delete": "^0.4.0",
"mongoose-timestamp": "^0.6.0"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0"
},
"scripts": {
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarkSideOfTheCode/notes-api.git"
},
"keywords": [
"notes",
"api"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/DarkSideOfTheCode/notes-api/issues"
},
"homepage": "https://github.com/DarkSideOfTheCode/notes-api#readme"
}