-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
99 lines (99 loc) · 2.97 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
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "evaka-api-gateways",
"version": "1.0.0",
"description": "API gateways for eVaka",
"type": "module",
"private": true,
"license": "LGPL-2.1-or-later",
"scripts": {
"clean": "rm -rf ./build ./dist",
"type-check": "tsc --noEmit",
"build": "yarn clean && yarn install && tsc --build src",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "yarn lint --fix",
"pretest": "tsc --build src/pino-cli",
"test": "yarn lint:fix && NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest",
"dev": "tsc --build src && concurrently --prefix '[{name}]' --names 'tsc,nodemon' 'tsc --build --preserveWatchOutput -w src' 'NODE_ENV=local nodemon --enable-source-maps dist/index.js'",
"coverage": "NODE_ENV=test jest --coverage",
"pretest-ci": "yarn pretest",
"test-ci": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"prepack": "exit 1"
},
"dependencies": {
"@node-saml/node-saml": "^5.0.0",
"axios": "^1.7.4",
"connect-redis": "^8.0.0",
"cookie-parser": "^1.4.6",
"date-fns": "^4.1.0",
"dd-trace": "^5.36.0",
"express": "^4.20.0",
"express-basic-auth": "^1.2.1",
"express-http-proxy": "^2.1.1",
"express-session": "^1.18.0",
"fast-xml-parser": "^4.5.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"make-error-cause": "^2.3.0",
"nocache": "^4.0.0",
"pino": "^9.6.0",
"pino-http": "^10.4.0",
"pino-pretty": "^13.0.0",
"pump": "^3.0.0",
"query-string": "^9.1.0",
"redis": "^4.7.0",
"split2": "^4.2.0",
"through2": "^4.0.2",
"uuid": "^11.0.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@jest/globals": "^29.7.0",
"@types/cookie-parser": "^1.4.3",
"@types/express-http-proxy": "^1.6.3",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.17.0",
"@types/node": "^22.13.0",
"@types/node-forge": "^1.3.2",
"@types/pump": "^1.1.1",
"@types/split2": "^4.2.0",
"@types/through2": "^2.0.38",
"@types/tough-cookie": "^4.0.2",
"@types/xml2js": "^0.4.11",
"concurrently": "^9.1.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"nock": "^14.0.0",
"node-forge": "^1.3.1",
"nodemon": "^3.1.0",
"prettier": "^3.5.0",
"tough-cookie": "^5.1.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.24.0",
"xml-crypto": "^6.0.0",
"xml2js": "^0.6.0"
},
"jest-junit": {
"outputDirectory": "./build/test-reports/",
"outputName": "jest-junit.xml"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"engines": {
"node": ">= 22.12.0"
},
"packageManager": "[email protected]"
}