-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 KB
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": "api-koa-example",
"version": "1.0.0",
"description": "A simple example Koa microservice",
"main": "app.js",
"scripts": {
"test": "./node_modules/.bin/mocha tests/*.js --timeout 5000 --exit",
"start": "node src/app",
"dev": "nodemon src/app",
"lint": "eslint \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/richardbertozzo/api-koa-example.git"
},
"keywords": [
"Node",
"Koa"
],
"author": "Richard Bertozzo <richardjrbertozzo@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/richardbertozzo/api-koa-example/issues"
},
"homepage": "https://github.com/richardbertozzo/api-koa-example#readme",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^6.2.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"pino": "^5.11.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.10",
"supertest": "^3.4.2"
}
}