-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.34 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.34 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
{
"name": "communications-manager",
"version": "0.0.1",
"description": "Public facing API for the Communications Manager service",
"sourceType": "module",
"scripts": {
"lint": "redocly lint specification/communications-manager.yaml",
"publish": "mkdir -p build && redocly bundle specification/communications-manager.yaml --dereferenced --remove-unused-components --ext json | poetry run python scripts/set_version.py > build/communications-manager.json",
"serve": "redocly preview-docs -p 5000 build/communications-manager.json",
"check-licenses": "node_modules/.bin/license-checker --failOn GPL --failOn LGPL --failOn AGPL",
"sandbox-postman-collection": "newman run postman/NhsNotify.Sandbox.postman_collection.json",
"integration-postman-collection": "poetry run python scripts/build_postman_environment.py && newman run postman/NhsNotify.Integration.postman_collection.json -e postman/Integration.test.postman_environment.json",
"static-analysis": "./scripts/perform-static-analysis.sh",
"zap-security-scan": "./scripts/run_zap.sh"
},
"author": "NHS Digital",
"license": "MIT",
"homepage": "https://digital.nhs.uk/developer/api-catalogue/nhs-notify",
"bugs": {
"url": "https://github.com/NHSDigital/communications-manager-api/issues"
},
"eslintConfig": {
"extends": [
"./scripts/linter/base.js"
]
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@redocly/cli": "^2.14.4",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-gitlab": "^3.0.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-workspaces": "^0.11.0",
"eslint-plugin-yml": "^1.2.0",
"hbs-cli": "^1.4.1",
"license-checker": "^25.0.1",
"minimist": "^1.2.2",
"newman": "^6.2.2",
"sinon": "^17.0.1",
"typescript": "^5.5.4"
},
"dependencies": {
"ajv": "4.11.8 - 8",
"jsrsasign": "^11.1.0",
"jsrsasign-util": "^1.0.5"
},
"overrides": {
"handlebars": "^4.7.9",
"flatted": "^3.4.2",
"postcss": "^8.5.12",
"lodash": "^4.18.1",
"underscore": "^1.13.8"
}
}