-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.44 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.44 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
89
90
91
92
{
"name": "kondo-backend",
"version": "1.0.0",
"description": "Backend for Kondo app",
"main": "app.js",
"scripts": {
"serve": "ts-node-dev --respawn --transpileOnly src/app.ts | pino-pretty -i req,res,module",
"pretest": "eslint --ignore-path .gitignore **/*.ts --fix",
"test": "jest"
},
"author": "DevOps Library",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^16.1.7",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/jest": "^24.0.23",
"connect-redis": "^4.0.3",
"dotenv": "^8.2.0",
"eslint-plugin-import": "^2.18.2",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-jwt-authz": "^2.3.1",
"express-pino-logger": "^4.0.0",
"express-session": "^1.17.0",
"graphql-request": "^1.8.2",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"inversify-express-utils": "^6.3.2",
"jwks-rsa": "^1.6.0",
"jwt-decode": "^2.2.0",
"moment": "^2.24.0",
"nock": "^11.7.0",
"pg-promise": "^10.2.1",
"pino-pretty": "^3.2.2",
"prettier": "^1.18.2",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"jest": {
"testPathIgnorePatterns": [
"/lib/",
"/node_modules/"
],
"collectCoverage": true,
"preset": "ts-jest",
"collectCoverageFrom": [
"**/*.js",
"**/*.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testResultsProcessor": "jest-sonar-reporter",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/coverage/",
"backpack.config.js",
"/build/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node"
},
"devDependencies": {
"@types/pino": "^5.8.13",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prefer-arrow": "^1.1.6",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"jest-sonar-reporter": "^2.0.0",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.2"
}
}