-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.31 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.31 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
82
83
{
"name": "@helsingborg-stad/gdi-api-node",
"version": "1.0.10",
"description": "",
"repository": "https://github.com/helsingborg-stad/gdi-api-node.git",
"scripts": {
"build": "tsc -p .",
"prepack": "rm -rf dist/ && npm run build",
"start": "tsc && node .",
"test": "jest --runInBand",
"coverage": "jest --runInBand --coverage",
"docs": "npx typedoc src/**/*"
},
"license": "MIT",
"dependencies": {
"@graphql-tools/schema": "^9.0.4",
"@koa/cors": "^3.4.1",
"graphql": "^16.6.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0",
"koa2-swagger-ui": "^5.6.0",
"openapi-backend": "^5.5.0"
},
"devDependencies": {
"@types/http-errors": "^1.8.2",
"@types/jest": "^29.1.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/koa": "^2.13.5",
"@types/koa-router": "^7.4.4",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-plugin-jest": "^27.0.4",
"http-status-codes": "^2.2.0",
"jest": "^29.1.2",
"supertest": "^6.2.4",
"ts-jest": "^29.0.3",
"typescript": "^4.8.2"
},
"files": [
"dist/**/*"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
},
"./types": "./dist/types.d.ts",
"./application": {
"types": "./dist/application/types.d.ts",
"require": "./dist/application/index.js"
},
"./modules/*": {
"types": "./dist/modules/*",
"require": "./dist/modules/*"
},
"./modules/healthcheck": {
"types": "./dist/modules/healthcheck/index.d.ts",
"require": "./dist/modules/healthcheck/index.js"
},
"./modules/healthcheck/index": {
"types": "./dist/modules/healthcheck/index.d.ts",
"require": "./dist/modules/healthcheck/index.js"
},
"./modules/jwt-user": "./dist/modules/jwt-user/index.js",
"./modules/swagger": "./dist/modules/swagger/index.js",
"./modules/web-framework": "./dist/modules/web-framework/index.js",
"./services/*": {
"types": "./dist/services/*",
"require": "./dist/services/*"
},
"./services/application": "./dist/services/application.js",
"./services/authorization-service": "./dist/services/authorization-service.js",
"./graphql": {
"types": "./dist/graphql/index.d.ts",
"require": "./dist/graphql/index.js"
}
}
}