-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.07 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.07 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
{
"name": "login.dfe.public-api",
"version": "10.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/DFE-Digital/login.dfe.node-boilerplate.git"
},
"author": "",
"license": "MIT",
"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:report": "jest --coverage --reporters=default --reporters jest-junit --coverageReporters=clover",
"prepare": "husky"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": false,
"clearMocks": true
},
"dependencies": {
"agentkeepalive": "^4.6.0",
"applicationinsights": "^2.9.8",
"body-parser": "^1.20.4",
"dotenv": "^16.6.1",
"email-validator": "^2.0.4",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.17.21",
"login.dfe.api-client": "^1.0.58",
"login.dfe.api.auth": "^2.3.4",
"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.dao": "^5.0.6",
"login.dfe.express-error-handling": "^3.0.5",
"login.dfe.healthcheck": "^3.0.3",
"login.dfe.jobs-client": "^6.1.3",
"login.dfe.jwt-strategies": "^4.1.2",
"login.dfe.sanitization": "^3.0.4",
"niceware": "^4.0.0",
"uuid": "^11.1.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-formatter-junit": "^8.40.0",
"eslint-plugin-jest": "^28.14.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.5.2",
"node-mocks-http": "^1.17.0",
"nodemon": "^3.1.11",
"prettier": "^3.7.4",
"supertest": "^7.2.2"
}
}