-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.51 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": "login.dfe.support",
"version": "27.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/DFE-Digital/login.dfe.support.git"
},
"description": "",
"author": "",
"license": "MIT",
"assets": {
"version": "12.0.6"
},
"scripts": {
"dev": "node src/index.js",
"dev:checks": "npm run lint && npm run test",
"format": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:report": "eslint . -f junit -o eslint-results.xml",
"test": "jest --coverage",
"test:watch": "./node_modules/.bin/jest --watchAll",
"test:report": "jest --coverage --reporters=default --reporters jest-junit --coverageReporters=clover",
"prepare": "husky"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@azure/service-bus": "^7.9.5",
"agentkeepalive": "^4.6.0",
"async": "^2.6.4",
"body-parser": "^1.20.3",
"connect-redis": "^7.1.1",
"cookie-parser": "^1.4.7",
"cookie-session": "^2.1.0",
"csrf-csrf": "^3.2.2",
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-ejs-layouts": "^2.5.1",
"express-mw-correlation-id": "^5.2.0",
"express-session": "^1.18.1",
"helmet": "^7.2.0",
"ioredis": "^5.6.1",
"lodash": "^4.17.21",
"login.dfe.api-client": "^1.0.72",
"login.dfe.async-retry": "github:DFE-Digital/login.dfe.async-retry#v2.0.3",
"login.dfe.audit.winston-sequelize-transport": "^3.2.6",
"login.dfe.config.schema.common": "^2.1.8",
"login.dfe.dao": "^5.0.8",
"login.dfe.entra-auth-extensions": "^1.0.24",
"login.dfe.express-flash-2": "github:DFE-Digital/login.dfe.express-flash-2#v2.0.2",
"login.dfe.express-helpers": "^2.0.0",
"login.dfe.healthcheck": "^3.0.3",
"login.dfe.jobs-client": "^6.1.3",
"login.dfe.policy-engine": "^5.0.4",
"login.dfe.validation": "^2.1.5",
"moment": "^2.30.1",
"niceware": "^4.0.0",
"openid-client": "^4.9.1",
"passport": "^0.7.0",
"sequelize": "^6.37.7",
"simpl-schema": "^3.4.6",
"tedious": "^18.6.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"eslint-formatter-junit": "^8.40.0",
"eslint-plugin-jest": "^28.14.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"ioredis-mock": "^8.13.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.5.2",
"node-mocks-http": "^1.17.2",
"prettier": "^3.6.2"
}
}