-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
{
"name": "manage-vaccinations-in-schools-prototype",
"version": "2.0.0",
"description": "Manage vaccinations in schools prototype",
"keywords": [
"nhsuk",
"prototype"
],
"license": "MIT",
"scripts": {
"create-data": "node lib/create-data.js",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint:css": "stylelint '**/*.scss'",
"lint:css:fix": "stylelint '**/*.scss' --fix",
"lint": "npm run lint:prettier && npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix && npm run lint:css:fix",
"build": "bin/build.sh",
"start": "nhsuk-prototype-rig",
"postinstall": "npm run create-data"
},
"dependencies": {
"@faker-js/faker": "^10.4.0",
"@x-govuk/govuk-prototype-wizard": "^0.4.0",
"accessible-autocomplete": "^3.0.1",
"countries-and-timezones": "^3.9.0",
"date-fns": "^4.1.0",
"dotenv": "^17.4.2",
"express-flash": "^0.0.2",
"i18n": "^0.15.3",
"json-as-xlsx": "^2.5.6",
"lodash": "^4.18.1",
"nhsuk-prototype-rig": "^0.8.0",
"response-time": "^2.3.4"
},
"devDependencies": {
"@types/lodash": "^4.17.24",
"@x-govuk/eslint-config": "^0.0.2",
"prettier": "^3.8.1",
"stylelint": "^16.26.1",
"stylelint-config-gds": "^2.0.0",
"stylelint-order": "^7.0.1"
},
"peerDependencies": {
"@x-govuk/govuk-prototype-filters": "^2.1.0",
"express": "^5.2.1",
"nhsuk-frontend": "^10.4.2"
},
"engines": {
"node": "^24"
},
"private": true,
"type": "module",
"prototype": {
"nunjucksPaths": [
"./node_modules/govuk-frontend/dist",
"./node_modules/@x-govuk/govuk-prototype-components/src"
],
"serviceName": "Manage vaccinations in schools",
"templateExtension": "njk"
}
}