-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.4 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.4 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
{
"name": "record-a-vaccination-prototype",
"version": "1.0.0",
"description": "A prototype of the NHS Record a vaccination service.",
"main": "app.js",
"scripts": {
"start": "node .",
"postinstall": "node scripts/patch-body-parser.js",
"lint": "npm run lint:js && npm run lint:prettier",
"lint:fix": "npm run lint:js:fix && npm run lint:prettier:fix",
"lint:prettier": "prettier --cache --cache-location .cache/prettier --cache-strategy content --check .",
"lint:prettier:fix": "prettier --write .",
"lint:js": "eslint --cache --cache-location .cache/eslint --cache-strategy content --color --ignore-path .gitignore \"**/*.js\"",
"lint:js:fix": "npm run lint:js -- --fix"
},
"author": "NHS England",
"license": "MIT",
"dependencies": {
"@x-govuk/govuk-prototype-filters": "^2.1.0",
"accessible-autocomplete": "^3.0.1",
"nhsuk-frontend": "github:nhsuk/nhsuk-frontend#0e310c29a",
"nhsuk-prototype-kit": "^8.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.2.1",
"prettier": "^3.8.1"
},
"engines": {
"node": "^24",
"npm": "^11.6.1, <11.6.3 || ^11.6.4, <11.12.0"
}
}