-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.49 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
{
"name": "digital-prevention-services-portfolio",
"description": "The website for NHS Digital prevention services portfolio (DPSP).",
"homepage": "https://www.digital-prevention-services.nhs.uk",
"author": {
"name": "NHS England",
"url": "https://www.england.nhs.uk"
},
"repository": "NHSDigital/digital-prevention-services-portfolio",
"bugs": {
"url": "https://github.com/NHSDigital/digital-prevention-services-portfolio/issues"
},
"license": "MIT",
"scripts": {
"build": "eleventy --quiet",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint:scss": "stylelint '**/*.scss'",
"lint:scss:fix": "stylelint '**/*.scss' --fix",
"lint": "npm run lint:prettier && npm run lint:js && npm run lint:scss",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix && npm run lint:scss:fix",
"check:markdown": "node .github/scripts/check-markdown.mjs",
"start": "eleventy --serve --quiet --port $PORT"
},
"dependencies": {
"@11ty/eleventy": "^3.1.6",
"@x-govuk/nhsuk-eleventy-plugin": "^1.4.3",
"js-yaml": "^4.3.1"
},
"devDependencies": {
"@x-govuk/eslint-config": "^0.0.1",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-gds": "^3.0.0"
},
"private": true,
"engines": {
"node": "^24",
"npm": "^12"
},
"allowScripts": {
"fsevents": false,
"@parcel/watcher": false
}
}