-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.06 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
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
{
"name": "@kodasoftware/api",
"version": "0.2.0",
"description": "A library for create Node, Koa-based applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16",
"vscode": ">=1.22"
},
"keywords": [
"api",
"kodasoftware",
"koa",
"router",
"middlewares",
"swagger"
],
"scripts": {
"compile": "tsc",
"test": "jest",
"test:watch": "npm t -- --watch",
"test:coverage": "npm t -- --coverage",
"lint": "eslint",
"lint:fix": "eslint --fix",
"precompile": "rimraf dist",
"prepack": "npm run compile"
},
"author": "Koda Software <developer@kodasoftware.com>",
"license": "MIT",
"files": [
"dist"
],
"peerDependencies": {
"@google-cloud/functions-framework": ">=3",
"@kodasoftware/monitoring": ">=0",
"@kodasoftware/typescript": ">=0",
"serverless-http": ">=3"
},
"devDependencies": {
"@kodasoftware/testing": "^0.0.0",
"@types/chance": "^1.1.6",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": ">=12",
"@types/node": "^20.11.18",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": ">=6",
"@typescript-eslint/eslint-plugin": ">=7",
"@typescript-eslint/parser": ">=7",
"chance": "^1.1.11",
"eslint": ">=8",
"eslint-config-prettier": ">=9",
"eslint-plugin-jest": ">=27",
"eslint-plugin-node": ">=11",
"eslint-plugin-prettier": ">=5",
"eslint-plugin-simple-import-sort": ">=12",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": ">=3",
"prettier-eslint": ">=16",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": ">=5"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.1",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"koa": "^2.15.0",
"koa-body": "^6.0.1",
"koa-compose": "^4.1.0",
"koa2-swagger-ui": "^5.10.0",
"swagger-jsdoc": "^6.2.8"
}
}