-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.15 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.15 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
84
85
86
87
88
{
"name": "checkcredentials",
"version": "1.0.0",
"description": "A simple proxy service to check users",
"main": "index.js",
"scripts": {
"lint": "tslint --project tsconfig.json --format stylish",
"test": "jest",
"build": "tsc",
"serve": "ts-node src/server.ts",
"docker": "docker build -t checkcredentials -f deployment/Dockerfile ."
},
"keywords": [],
"author": "aus der Technik",
"license": "UNLICENSED",
"dependencies": {
"@prisma/client": "5.3.1",
"@types/bcrypt": "^5.0.1",
"@types/http-status-codes": "^1.2.0",
"@types/koa": "^2.13.8",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4",
"@types/node": "^20.5.9",
"bcrypt": "^5.1.1",
"http-status-codes": "^2.2.0",
"jest-mock-extended": "2.0.4",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.0",
"prisma": "^5.3.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/supertest": "^2.0.12",
"jest": "^29.6.4",
"jsonwebtoken": "^9.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"yarn-audit-fix": "^10.0.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts",
"tsx"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/app/**/*.{ts,js}",
"!src/app/app.ts",
"!**/node_modules/**",
"!**/dist/**",
"!**/coverage/**"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
},
"coverageReporters": [
"text",
"text-summary"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)x?$",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/coverage/"
],
"setupFilesAfterEnv": [
"<rootDir>/src/app/singleton.ts"
]
}
}