-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.01 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
{
"name": "manage-vaccinations-in-schools-prototype",
"version": "2.0.0",
"private": true,
"description": "Manage vaccinations in schools prototype",
"keywords": [
"nhsuk",
"prototype"
],
"license": "MIT",
"type": "module",
"main": "app.js",
"scripts": {
"build": "bin/build.sh",
"create-data": "node --env-file-if-exists=.env lib/create-data.js",
"postinstall": "npm run create-data",
"lint": "npm run lint:prettier && npm run lint:js && npm run lint:css",
"lint:css": "stylelint '**/*.scss'",
"lint:css:fix": "stylelint '**/*.scss' --fix",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix && npm run lint:css:fix",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"start": "node ."
},
"dependencies": {
"@faker-js/faker": "^10.4.0",
"@x-govuk/govuk-prototype-filters": "^2.1.0",
"@x-govuk/govuk-prototype-wizard": "^0.4.0",
"accessible-autocomplete": "^3.0.1",
"autoprefixer": "^10.5.0",
"connect-pg-simple": "^10.0.0",
"countries-and-timezones": "^3.9.0",
"date-fns": "^4.4.0",
"esbuild-sass-plugin": "^3.7.0",
"express": "^5.2.1",
"express-session": "^1.19.0",
"i18n": "^0.15.3",
"json-as-xlsx": "^2.5.6",
"lodash": "^4.18.1",
"nhsuk-decorated-components": "^0.7.0",
"nhsuk-frontend": "^10.5.0",
"nhsuk-prototype-kit": "^8.2.3",
"pg": "^8.21.0",
"postcss": "^8.5.15",
"response-time": "^2.3.4"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/express-flash": "^0.0.5",
"@types/express-session": "^1.19.0",
"@types/lodash": "^4.17.24",
"@x-govuk/eslint-config": "^0.0.2",
"postcss-scss": "^4.0.9",
"prettier": "^3.8.3",
"stylelint": "^17.12.0",
"stylelint-config-gds": "^3.0.0",
"stylelint-order": "^8.1.1",
"typed-query-selector": "^2.12.2",
"typescript": "^6.0.3"
},
"engines": {
"node": "^24"
}
}