-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
87 lines (87 loc) · 2.41 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "koa-rest-api-boilerplate",
"version": "2.1.0",
"description": "Boilerplate for Koa RESTful API application with Docker, Swagger, Jest, Coveralls, and Circle CI",
"homepage": "https://github.com/posquit0/koa-rest-api-boilerplate",
"author": {
"name": "Byungjin Park",
"email": "posquit0.bj@gmail.com",
"url": "https://www.posquit0.com"
},
"contributors": [
{
"name": "Byungjin Park",
"email": "posquit0.bj@gmail.com",
"url": "https://www.posquit0.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/posquit0/koa-rest-api-boilerplate.git"
},
"bugs": {
"url": "https://github.com/posquit0/koa-rest-api-boilerplate/issues"
},
"keywords": [
"koa",
"koa2",
"rest",
"restful",
"api",
"koa-boilerplate",
"boilerplate",
"skeleton"
],
"engines": {
"node": ">= 12.22.0"
},
"main": "app",
"scripts": {
"start": "node app",
"dev": "NODE_ENV=development nodemon --quiet | pino-pretty -c -l -t",
"docs": "docsify serve docs",
"test": "NODE_ENV=test jest --passWithNoTests",
"test:unit": "npm test -- test/unit",
"test:integration": "npm test -- test/integration",
"test:watch": "npm test -- --watch",
"test:watch:unit": "npm run test:unit -- --watch",
"test:watch:integration": "npm run test:integration -- --watch",
"test:coverage": "npm test -- --coverage",
"test:coverage:unit": "npm run test:unit -- --coverage",
"test:coverage:integration": "npm run test:integration -- --coverage",
"lint": "eslint app test",
"lint:app": "eslint app",
"lint:test": "eslint test",
"prepare": "husky install"
},
"dependencies": {
"@kasa/koa-logging": "^0.3.0",
"@kasa/koa-request-id": "^2.0.1",
"@koa/cors": "^3.1.0",
"dotenv": "^8.2.0",
"elastic-apm-node": "^3.14.0",
"got": "^9.6.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^7.4.0",
"pino": "^6.11.3",
"swagger-jsdoc": "6",
"uuid": "3.4.0"
},
"devDependencies": {
"codecov": "^3.8.1",
"docsify-cli": "^4.4.3",
"eslint": "^6.6.0",
"eslint-config-kasa": "^0.5.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"pino-pretty": "^4.7.1",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
}
}